/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
D | ExpressionEvaluator.java | 124 executeFunction("#", node.getExpression()); in caseANumericExpression() 129 executeFunction("!", node.getExpression()); in caseANotExpression() 134 executeFunction("?", node.getExpression()); in caseAExistsExpression() 139 executeFunction("==", node.getLeft(), node.getRight()); in caseAEqExpression() 144 executeFunction("#==", node.getLeft(), node.getRight()); in caseANumericEqExpression() 149 executeFunction("!=", node.getLeft(), node.getRight()); in caseANeExpression() 154 executeFunction("#!=", node.getLeft(), node.getRight()); in caseANumericNeExpression() 159 executeFunction("<", node.getLeft(), node.getRight()); in caseALtExpression() 164 executeFunction(">", node.getLeft(), node.getRight()); in caseAGtExpression() 169 executeFunction("<=", node.getLeft(), node.getRight()); in caseALteExpression() [all …]
|
/external/skia/src/animator/ |
D | SkDisplayable.h | 53 virtual void executeFunction(SkDisplayable* , int functionIndex, 55 void executeFunction(SkDisplayable* , const SkMemberInfo* ,
|
D | SkDisplayMath.h | 19 void executeFunction(SkDisplayable* , int index,
|
D | SkDraw3D.h | 41 void executeFunction(SkDisplayable* , int index,
|
D | SkDisplayable.cpp | 396 void SkDisplayable::executeFunction(SkDisplayable* , int index, in executeFunction() function in SkDisplayable 401 void SkDisplayable::executeFunction(SkDisplayable* target, in executeFunction() function in SkDisplayable 410 executeFunction(target, info->functionIndex(), typedValues, info->getType(), value); in executeFunction()
|
D | SkDrawPaint.h | 35 void executeFunction(SkDisplayable* target, int index,
|
D | SkDraw3D.cpp | 88 void Sk3D_Patch::executeFunction(SkDisplayable* target, int index, in executeFunction() function in Sk3D_Patch
|
D | SkDisplayTypes.h | 76 void executeFunction(SkDisplayable* , int index,
|
D | SkDisplayTypes.cpp | 121 void SkDisplayString::executeFunction(SkDisplayable* target, int index, in executeFunction() function in SkDisplayString
|
D | SkDisplayMath.cpp | 131 void SkDisplayMath::executeFunction(SkDisplayable* target, int index, in executeFunction() function in SkDisplayMath
|
D | SkDrawPaint.cpp | 148 void SkDrawPaint::executeFunction(SkDisplayable* target, int index, in executeFunction() function in SkDrawPaint
|
D | SkMemberInfo.cpp | 389 displayable->executeFunction(displayable, this, scriptValue.fOperand.fArray, nullptr); in writeValue()
|
D | SkAnimatorScript.cpp | 306 displayable->executeFunction(displayable, info->functionIndex(), params, info->getType(), in EvalMemberFunction()
|
D | SkDisplayApply.cpp | 126 … executor->executeFunction(target, info->functionIndex(), typedValues, info->getType(), nullptr); in applyValues()
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/ |
D | FunctionExecutor.java | 31 Value executeFunction(String functionName, Value... args); in executeFunction() method
|
D | FunctionRegistry.java | 43 public Value executeFunction(String name, Value... args) { in executeFunction() method in FunctionRegistry
|
/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
D | RenderingContext.java | 35 Value executeFunction(String name, Value... args) throws JSilverInterpreterException; in executeFunction() method
|
D | DefaultRenderingContext.java | 81 public Value executeFunction(String name, Value... args) { in executeFunction() method in DefaultRenderingContext 82 return globalFunctionExecutor.executeFunction(name, args); in executeFunction()
|