Revert "[3.0] Clipping API feature in Actor" 58/97658/1
authordongsug.song <dongsug.song@samsung.com>
Tue, 15 Nov 2016 00:16:27 +0000 (09:16 +0900)
committerdongsug.song <dongsug.song@samsung.com>
Tue, 15 Nov 2016 00:16:31 +0000 (09:16 +0900)
This reverts commit 732dc52ee565624964d234275ac23d31f2ba465a.

Change-Id: I7e6a7dc1963a24e67cf94fda0b9d86ff4b9eabbe

automated-tests/src/dali-adaptor/dali-test-suite-utils/test-trace-call-stack.cpp
automated-tests/src/dali-adaptor/dali-test-suite-utils/test-trace-call-stack.h

index 0054e59..3f2e6e5 100644 (file)
@@ -130,18 +130,6 @@ bool TraceCallStack::FindMethodAndParams(std::string method, const NamedParams&
   return FindIndexFromMethodAndParams( method, params ) > -1;
 }
 
-bool TraceCallStack::FindMethodAndParamsFromStartIndex( std::string method, std::string params, size_t& startIndex ) const
-{
-  for( size_t i = startIndex; i < mCallStack.size(); ++i )
-  {
-    if( ( mCallStack[i].method.compare( method ) == 0 ) && ( mCallStack[i].paramList.compare( params ) == 0 ) )
-    {
-      startIndex = i;
-      return true;
-    }
-  }
-  return false;
-}
 
 /**
  * Search for a method in the stack with the given parameter list
index e1882ea..137bfaf 100644 (file)
@@ -102,19 +102,6 @@ public:
   bool FindMethodAndParams(std::string method, const NamedParams& params) const;
 
   /**
-   * Search for a method in the stack with the given parameter list.
-   * The search is done from a given index.
-   * This allows the order of methods and parameters to be checked.
-   * @param[in] method The name of the method
-   * @param[in] params A comma separated list of parameter values
-   * @param[in/out] startIndex The method index to start looking from.
-   *                This is updated if a method is found so subsequent
-   *                calls can search for methods occuring after this one.
-   * @return True if the method was in the stack
-   */
-  bool FindMethodAndParamsFromStartIndex( std::string method, std::string params, size_t& startIndex ) const;
-
-  /**
    * Search for a method in the stack with the given parameter list
    * @param[in] method The name of the method
    * @param[in] params A comma separated list of parameter values