From: dongsug.song Date: Tue, 15 Nov 2016 00:16:27 +0000 (+0900) Subject: Revert "[3.0] Clipping API feature in Actor" X-Git-Tag: accepted/tizen/common/20161115.200910~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=fe7e4749a1b6946dcb4bfb5e28dcf8fb485f3a37;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git Revert "[3.0] Clipping API feature in Actor" This reverts commit 732dc52ee565624964d234275ac23d31f2ba465a. Change-Id: I7e6a7dc1963a24e67cf94fda0b9d86ff4b9eabbe --- diff --git a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-trace-call-stack.cpp b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-trace-call-stack.cpp index 0054e59..3f2e6e5 100644 --- a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-trace-call-stack.cpp +++ b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-trace-call-stack.cpp @@ -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 diff --git a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-trace-call-stack.h b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-trace-call-stack.h index e1882ea..137bfaf 100644 --- a/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-trace-call-stack.h +++ b/automated-tests/src/dali-adaptor/dali-test-suite-utils/test-trace-call-stack.h @@ -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