Home
last modified time | relevance | path

Searched refs:executeFunction (Results 1 – 5 of 5) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DExpressionEvaluator.java124 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/jsilver/src/com/google/clearsilver/jsilver/functions/
DFunctionExecutor.java31 Value executeFunction(String functionName, Value... args); in executeFunction() method
DFunctionRegistry.java43 public Value executeFunction(String name, Value... args) { in executeFunction() method in FunctionRegistry
/external/jsilver/src/com/google/clearsilver/jsilver/template/
DRenderingContext.java35 Value executeFunction(String name, Value... args) throws JSilverInterpreterException; in executeFunction() method
DDefaultRenderingContext.java81 public Value executeFunction(String name, Value... args) { in executeFunction() method in DefaultRenderingContext
82 return globalFunctionExecutor.executeFunction(name, args); in executeFunction()