Home
last modified time | relevance | path

Searched refs:PCommand (Results 1 – 25 of 39) sorted by relevance

12

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
DAMultipleCommand.java9 public final class AMultipleCommand extends PCommand
11 private final LinkedList<PCommand> _command_ = new LinkedList<PCommand>();
19 @SuppressWarnings("hiding") List<PCommand> _command_) in AMultipleCommand()
38 public LinkedList<PCommand> getCommand() in getCommand()
43 public void setCommand(List<PCommand> list) in setCommand()
47 for(PCommand e : list) in setCommand()
81 for(ListIterator<PCommand> i = this._command_.listIterator(); i.hasNext();) in replaceChild()
87 i.set((PCommand) newChild); in replaceChild()
DAIfCommand.java8 public final class AIfCommand extends PCommand
12 private PCommand _block_;
13 private PCommand _otherwise_;
23 @SuppressWarnings("hiding") PCommand _block_, in AIfCommand()
24 @SuppressWarnings("hiding") PCommand _otherwise_) in AIfCommand()
102 public PCommand getBlock() in getBlock()
107 public void setBlock(PCommand node) in setBlock()
127 public PCommand getOtherwise() in getOtherwise()
132 public void setOtherwise(PCommand node) in setOtherwise()
211 setBlock((PCommand) newChild); in replaceChild()
[all …]
DAInlineCommand.java8 public final class AInlineCommand extends PCommand
11 private PCommand _command_;
20 @SuppressWarnings("hiding") PCommand _command_) in AInlineCommand()
67 public PCommand getCommand() in getCommand()
72 public void setCommand(PCommand node) in setCommand()
131 setCommand((PCommand) newChild); in replaceChild()
DAOptimizedMultipleCommand.java16 public class AOptimizedMultipleCommand extends PCommand {
18 private final PCommand[] commands;
21 LinkedList<PCommand> originalChildCommands = originalNode.getCommand(); in AOptimizedMultipleCommand()
22 commands = new PCommand[originalChildCommands.size()]; in AOptimizedMultipleCommand()
47 commands[i] = (PCommand) newChild; in replaceChild()
DAAltCommand.java8 public final class AAltCommand extends PCommand
12 private PCommand _command_;
22 @SuppressWarnings("hiding") PCommand _command_) in AAltCommand()
97 public PCommand getCommand() in getCommand()
102 public void setCommand(PCommand node) in setCommand()
174 setCommand((PCommand) newChild); in replaceChild()
DAAutoescapeCommand.java8 public final class AAutoescapeCommand extends PCommand
12 private PCommand _command_;
22 @SuppressWarnings("hiding") PCommand _command_) in AAutoescapeCommand()
97 public PCommand getCommand() in getCommand()
102 public void setCommand(PCommand node) in setCommand()
174 setCommand((PCommand) newChild); in replaceChild()
DAEscapeCommand.java8 public final class AEscapeCommand extends PCommand
12 private PCommand _command_;
22 @SuppressWarnings("hiding") PCommand _command_) in AEscapeCommand()
97 public PCommand getCommand() in getCommand()
102 public void setCommand(PCommand node) in setCommand()
174 setCommand((PCommand) newChild); in replaceChild()
DStart.java10 private PCommand _pCommand_;
19 @SuppressWarnings("hiding") PCommand _pCommand_, in Start()
39 public PCommand getPCommand() in getPCommand()
44 public void setPCommand(PCommand node) in setPCommand()
112 setPCommand((PCommand) newChild); in replaceChild()
DALoopToCommand.java8 public final class ALoopToCommand extends PCommand
13 private PCommand _command_;
24 @SuppressWarnings("hiding") PCommand _command_) in ALoopToCommand()
127 public PCommand getCommand() in getCommand()
132 public void setCommand(PCommand node) in setCommand()
217 setCommand((PCommand) newChild); in replaceChild()
DAWithCommand.java8 public final class AWithCommand extends PCommand
13 private PCommand _command_;
24 @SuppressWarnings("hiding") PCommand _command_) in AWithCommand()
127 public PCommand getCommand() in getCommand()
132 public void setCommand(PCommand node) in setCommand()
217 setCommand((PCommand) newChild); in replaceChild()
DAEachCommand.java8 public final class AEachCommand extends PCommand
13 private PCommand _command_;
24 @SuppressWarnings("hiding") PCommand _command_) in AEachCommand()
127 public PCommand getCommand() in getCommand()
132 public void setCommand(PCommand node) in setCommand()
217 setCommand((PCommand) newChild); in replaceChild()
DADefCommand.java9 public final class ADefCommand extends PCommand
14 private PCommand _command_;
25 @SuppressWarnings("hiding") PCommand _command_) in ADefCommand()
118 public PCommand getCommand() in getCommand()
123 public void setCommand(PCommand node) in setCommand()
230 setCommand((PCommand) newChild); in replaceChild()
DALoopCommand.java8 public final class ALoopCommand extends PCommand
14 private PCommand _command_;
26 @SuppressWarnings("hiding") PCommand _command_) in ALoopCommand()
157 public PCommand getCommand() in getCommand()
162 public void setCommand(PCommand node) in setCommand()
260 setCommand((PCommand) newChild); in replaceChild()
DALoopIncCommand.java8 public final class ALoopIncCommand extends PCommand
15 private PCommand _command_;
28 @SuppressWarnings("hiding") PCommand _command_) in ALoopIncCommand()
187 public PCommand getCommand() in getCommand()
192 public void setCommand(PCommand node) in setCommand()
303 setCommand((PCommand) newChild); in replaceChild()
DPCommand.java5 public abstract class PCommand extends Node class
DANoopCommand.java8 public final class ANoopCommand extends PCommand
DADataCommand.java8 public final class ADataCommand extends PCommand
DANameCommand.java8 public final class ANameCommand extends PCommand
DACommentCommand.java8 public final class ACommentCommand extends PCommand
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
DParser.java858 PCommand node1 = (PCommand) pop().get(0); in parse()
877 PCommand pcommandNode1; in new0()
895 PCommand pcommandNode1; in new1()
896 pcommandNode1 = (PCommand)nodeArrayList1.get(0); in new1()
910 PCommand pcommandNode1; in new2()
916 PCommand pcommandNode2; in new2()
918 pcommandNode2 = (PCommand)nodeArrayList1.get(0); in new2()
944 PCommand pcommandNode1; in new3()
966 PCommand pcommandNode1; in new4()
996 PCommand pcommandNode1; in new5()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
DVarOptimizer.java28 import com.google.clearsilver.jsilver.syntax.node.PCommand;
161 private PCommand optimizeVarCommands(AVarCommand varCommand) { in optimizeVarCommands()
199 private PCommand optimizedVarCommandOf(PPosition position, PExpression expression) { in optimizedVarCommandOf()
214 private static void addToContents(AMultipleCommand multi, PCommand command) { in addToContents()
266 private static PCommand optimizeEscapeSequences(AMultipleCommand multiCommand) { in optimizeEscapeSequences()
268 LinkedList<PCommand> commands = new LinkedList<PCommand>(); in optimizeEscapeSequences()
269 for (PCommand command : multiCommand.getCommand()) { in optimizeEscapeSequences()
290 PCommand escapedCommand = escapeCommand.getCommand(); in contentsOf()
304 private static AEscapeCommand asSimpleEscapeCommand(PCommand command) { in asSimpleEscapeCommand()
DAutoEscaper.java43 import com.google.clearsilver.jsilver.syntax.node.PCommand;
134 PCommand node = start.getPCommand(); in handleExplicitEscapeMode()
137 (PCommand) node.clone()); in handleExplicitEscapeMode()
284 private void applyAutoEscaping(PCommand node, PPosition position) { in applyAutoEscaping()
291 AEscapeCommand escape = new AEscapeCommand(position, escapeExpr, (PCommand) node.clone()); in applyAutoEscaping()
321 new AAutoescapeCommand(position, escapeStrategy, (PCommand) node.clone()); in saveAutoEscapingContext()
DInlineRewriter.java25 import com.google.clearsilver.jsilver.syntax.node.PCommand;
79 PCommand command = node.getCommand();
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DInterpretedMacro.java23 import com.google.clearsilver.jsilver.syntax.node.PCommand;
38 private final PCommand command;
45 public InterpretedMacro(PCommand command, Template owningTemplate, String macroName, in InterpretedMacro()
DTemplateInterpreter.java50 import com.google.clearsilver.jsilver.syntax.node.PCommand;
521 private void each(PVariable variable, String parentName, Data items, PCommand command) { in each()
540 private void loop(PVariable loopVar, int start, int end, int incr, PCommand command) { in loop()
597 private String createUnsupportedOperationMessage(PCommand node, Iterable<String> includeStack) { in createUnsupportedOperationMessage()

12