Home
last modified time | relevance | path

Searched refs:getExpression (Results 1 – 25 of 73) sorted by relevance

123

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DDepthFirstAdapter.java127 if(node.getExpression() != null) in caseAVarCommand()
129 node.getExpression().apply(this); in caseAVarCommand()
152 if(node.getExpression() != null) in caseALvarCommand()
154 node.getExpression().apply(this); in caseALvarCommand()
177 if(node.getExpression() != null) in caseAEvarCommand()
179 node.getExpression().apply(this); in caseAEvarCommand()
202 if(node.getExpression() != null) in caseAUvarCommand()
204 node.getExpression().apply(this); in caseAUvarCommand()
231 if(node.getExpression() != null) in caseASetCommand()
233 node.getExpression().apply(this); in caseASetCommand()
[all …]
DReversedDepthFirstAdapter.java124 if(node.getExpression() != null) in caseAVarCommand()
126 node.getExpression().apply(this); in caseAVarCommand()
149 if(node.getExpression() != null) in caseALvarCommand()
151 node.getExpression().apply(this); in caseALvarCommand()
174 if(node.getExpression() != null) in caseAEvarCommand()
176 node.getExpression().apply(this); in caseAEvarCommand()
199 if(node.getExpression() != null) in caseAUvarCommand()
201 node.getExpression().apply(this); in caseAUvarCommand()
224 if(node.getExpression() != null) in caseASetCommand()
226 node.getExpression().apply(this); in caseASetCommand()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DTemplateInterpreter.java110 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseAVarCommand()
122 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseAUvarCommand()
132 evaluateVariable(node.getExpression(), "[lvar expression]"); in caseALvarCommand()
141 evaluateVariable(node.getExpression(), "[evar expression]"); in caseAEvarCommand()
168 include(node.getExpression(), false); in caseAHardLincludeCommand()
178 include(node.getExpression(), true); in caseALincludeCommand()
187 include(node.getExpression(), false); in caseAHardIncludeCommand()
197 include(node.getExpression(), true); in caseAIncludeCommand()
210 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseASetCommand()
244 Value value = expressionEvaluator.evaluate(node.getExpression()); in caseAIfCommand()
[all …]
DExpressionEvaluator.java124 executeFunction("#", node.getExpression()); in caseANumericExpression()
129 executeFunction("!", node.getExpression()); in caseANotExpression()
134 executeFunction("?", node.getExpression()); in caseAExistsExpression()
219 executeFunction("-", node.getExpression()); in caseANegativeExpression()
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DTemplateTranslator.java239 .translateToString(node.getExpression()))); in caseAVarCommand()
242 escapingEvaluator.computeIfExemptFromEscaping(node.getExpression(), propagateEscapeStatus); in caseAVarCommand()
253 .translateToString(node.getExpression()))); in caseAUvarCommand()
270 .getExpression()))); in caseASetCommand()
275 .getExpression(), propagateEscapeStatus))); in caseASetCommand()
298 java.startIfBlock(expressionTranslator.translateToBoolean(node.getExpression())); in caseAIfCommand()
315 JavaExpression parent = expressionTranslator.translateToData(node.getExpression()); in caseAEachCommand()
331 JavaExpression value = expressionTranslator.translateUntyped(node.getExpression()); in caseAWithCommand()
377 JavaExpression end = expressionTranslator.translateToNumber(node.getExpression()); in caseALoopToCommand()
486 expressionTranslator.declareAsVariable(tempVariableName, node.getExpression()); in caseAAltCommand()
[all …]
DExpressionTranslator.java197 setResult(cast(Type.INT, node.getExpression())); in caseANumericExpression()
202 setResult(prefix(Type.BOOLEAN, Type.BOOLEAN, "!", node.getExpression())); in caseANotExpression()
209 PExpression expression = node.getExpression(); in caseAExistsExpression()
310 setResult(prefix(Type.INT, Type.INT, "-", node.getExpression())); in caseANegativeExpression()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DRedundentExprEliminator.java196 WalkingIterator iter1 = (WalkingIterator) testee.m_exprOwner.getExpression(); in matchAndEliminatePartialPaths()
206 WalkingIterator iter2 = (WalkingIterator) meh.m_exprOwner.getExpression(); in matchAndEliminatePartialPaths()
238 WalkingIterator sharedIter = (WalkingIterator)matchedPaths.m_exprOwner.getExpression(); in matchAndEliminatePartialPaths()
246 WalkingIterator iter = (WalkingIterator)owner.getExpression(); in matchAndEliminatePartialPaths()
272 WalkingIterator wi = (WalkingIterator)testee.m_exprOwner.getExpression(); in partialIsVariable()
309 getElemFromExpression(next.m_exprOwner.getExpression()); in findCommonAncestor()
387 ElemTemplateElement elemOwner = getElemFromExpression(next.m_exprOwner.getExpression()); in isNotSameAsOwner()
565 LocPathIterator lpi = (LocPathIterator)eo.getExpression(); in createMultistepExprList()
607 Expression expr1 = firstOccuranceOwner.getExpression(); in findAndEliminateRedundant()
618 Expression expr2 = owner2.getExpression(); in findAndEliminateRedundant()
[all …]
DAVTPartXPath.java67 return m_xpath.getExpression().canTraverseOutsideSubtree(); in canTraverseOutsideSubtree()
148 m_xpath.getExpression().callVisitors(m_xpath, visitor); in callVisitors()
DElemValueOf.java233 Expression expr = m_selectExpression.getExpression(); in execute()
285 m_selectExpression.getExpression().callVisitors(m_selectExpression, visitor); in callChildVisitors()
DElemForEach.java102 m_selectExpression = xpath.getExpression(); in setSelect()
149 getStylesheetRoot().m_selectDefault.getExpression(); in compose()
470 public Expression getExpression() in getExpression() method in ElemForEach
DXUnresolvedVariableSimple.java55 Expression expr = ((ElemVariable)m_obj).getSelect().getExpression(); in execute()
DElemWhen.java122 m_test.getExpression().callVisitors(m_test, visitor); in callChildVisitors()
DElemVariable.java424 return new XPath(new XRTreeFragSelectWrapper(valueof.getSelect().getExpression())); in rewriteChildToExpression()
488 m_selectPattern.getExpression().callVisitors(m_selectPattern, visitor); in callChildVisitors()
DElemIf.java146 m_test.getExpression().callVisitors(m_test, visitor); in callChildVisitors()
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DOperation.java152 public Expression getExpression() in getExpression() method in Operation.LeftExprOwner
182 public Expression getExpression() in getExpression() method in Operation
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
DintermOut.cpp368 if (node->getExpression()) { in visitLoop()
371 node->getExpression()->traverse(this); in visitLoop()
393 if (node->getExpression()) { in visitBranch()
396 node->getExpression()->traverse(this); in visitBranch()
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
DVarOptimizer.java162 PExpression expression = varCommand.getExpression(); in optimizeVarCommands()
309 if (!(escapeCommand.getExpression() instanceof AStringExpression)) { in asSimpleEscapeCommand()
331 return ((AStringExpression) escapeCommand.getExpression()).getValue().getText(); in simpleNameOf()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
DAbstractListPropertyEditor.java63 return getExpression(index); in getValueSource()
142 abstract protected String getExpression(int index) throws Exception; in getExpression() method in AbstractListPropertyEditor
DStringListPropertyEditor.java72 protected String getExpression(int index) throws Exception { in getExpression() method in StringListPropertyEditor
/external/apache-xml/src/main/java/org/apache/xpath/
DExpressionOwner.java34 public Expression getExpression(); in getExpression() method
/external/jsilver/src/com/google/streamhtmlparser/impl/
DStateTableTransition.java65 String getExpression() { in getExpression() method in StateTableTransition
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
DANegativeExpression.java37 public PExpression getExpression() in getExpression() method in ANegativeExpression
DANumericExpression.java37 public PExpression getExpression() in getExpression() method in ANumericExpression
DANotExpression.java37 public PExpression getExpression() in getExpression() method in ANotExpression
DAExistsExpression.java37 public PExpression getExpression() in getExpression() method in AExistsExpression

123