Home
last modified time | relevance | path

Searched refs:getOtherwise (Results 1 – 7 of 7) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
DDataCommandConsolidator.java222 if (node.getOtherwise() != null) { in caseAIfCommand()
224 node.getOtherwise().apply(this); in caseAIfCommand()
DAutoEscaper.java187 if (node.getOtherwise() != null) { in caseAIfCommand()
188 node.getOtherwise().apply(this); in caseAIfCommand()
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
DAIfCommand.java127 public PCommand getOtherwise() in getOtherwise() method in AIfCommand
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DTemplateTranslator.java300 if (!(node.getOtherwise() instanceof ANoopCommand)) { in caseAIfCommand()
302 node.getOtherwise().apply(this); in caseAIfCommand()
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
DDepthFirstAdapter.java598 if(node.getOtherwise() != null) in caseAIfCommand()
600 node.getOtherwise().apply(this); in caseAIfCommand()
DReversedDepthFirstAdapter.java591 if(node.getOtherwise() != null) in caseAIfCommand()
593 node.getOtherwise().apply(this); in caseAIfCommand()
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DTemplateInterpreter.java248 node.getOtherwise().apply(this); in caseAIfCommand()