Searched refs:getExpression (Results 26 - 50 of 81) sorted by relevance

1234

/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
H A DExpressionEvaluator.java124 executeFunction("#", node.getExpression());
129 executeFunction("!", node.getExpression());
134 executeFunction("?", node.getExpression());
219 executeFunction("-", node.getExpression());
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAEvarCommand.java67 public PExpression getExpression() method in class:AEvarCommand
H A DAHardIncludeCommand.java67 public PExpression getExpression() method in class:AHardIncludeCommand
H A DAHardLincludeCommand.java67 public PExpression getExpression() method in class:AHardLincludeCommand
H A DAIncludeCommand.java67 public PExpression getExpression() method in class:AIncludeCommand
H A DALincludeCommand.java67 public PExpression getExpression() method in class:ALincludeCommand
H A DALvarCommand.java67 public PExpression getExpression() method in class:ALvarCommand
H A DAUvarCommand.java67 public PExpression getExpression() method in class:AUvarCommand
H A DAVarCommand.java67 public PExpression getExpression() method in class:AVarCommand
H A DAAltCommand.java72 public PExpression getExpression() method in class:AAltCommand
H A DAAutoescapeCommand.java72 public PExpression getExpression() method in class:AAutoescapeCommand
H A DAEachCommand.java102 public PExpression getExpression() method in class:AEachCommand
H A DAEscapeCommand.java72 public PExpression getExpression() method in class:AEscapeCommand
H A DAIfCommand.java77 public PExpression getExpression() method in class:AIfCommand
H A DALoopToCommand.java102 public PExpression getExpression() method in class:ALoopToCommand
H A DASetCommand.java97 public PExpression getExpression() method in class:ASetCommand
H A DAWithCommand.java102 public PExpression getExpression() method in class:AWithCommand
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DintermOut.cpp368 if (node->getExpression()) {
371 node->getExpression()->traverse(this);
393 if (node->getExpression()) {
396 node->getExpression()->traverse(this);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemForEach.java102 m_selectExpression = xpath.getExpression();
149 getStylesheetRoot().m_selectDefault.getExpression();
183 // getStylesheetRoot().m_selectDefault.getExpression();
468 * @see ExpressionOwner#getExpression()
470 public Expression getExpression() method in class:ElemForEach
H A DElemWithParam.java235 m_selectPattern.getExpression().callVisitors(m_selectPattern, visitor);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DVarOptimizer.java162 PExpression expression = varCommand.getExpression();
309 if (!(escapeCommand.getExpression() instanceof AStringExpression)) {
331 return ((AStringExpression) escapeCommand.getExpression()).getValue().getText();
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFunctionMultiArgs.java172 * @see ExpressionOwner#getExpression()
174 public Expression getExpression() method in class:FunctionMultiArgs.ArgMultiOwner
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
H A DFunctionPattern.java221 * @see ExpressionOwner#getExpression()
223 public Expression getExpression() method in class:FunctionPattern.FunctionOwner
H A DUnionPattern.java154 * @see ExpressionOwner#getExpression()
156 public Expression getExpression() method in class:UnionPattern.UnionPathPartOwner
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DExpressionTranslator.java197 setResult(cast(Type.INT, node.getExpression()));
202 setResult(prefix(Type.BOOLEAN, Type.BOOLEAN, "!", node.getExpression()));
209 PExpression expression = node.getExpression();
310 setResult(prefix(Type.INT, Type.INT, "-", node.getExpression()));

Completed in 490 milliseconds

1234