/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
InlineRewriter.java | 79 PCommand command = node.getCommand(); 102 node.getCommand().apply(WHITESPACE_STRIPPER); 103 node.replaceBy(node.getCommand());
|
VarOptimizer.java | 216 multi.getCommand().addAll(((AMultipleCommand) command).getCommand()); 218 multi.getCommand().add(command); 269 for (PCommand command : multiCommand.getCommand()) { 272 addToContents(contentsOf(lastEscapeCommand), escapeCommand.getCommand()); 290 PCommand escapedCommand = escapeCommand.getCommand(); 295 multiCommand.getCommand().add(escapedCommand);
|
/development/samples/USB/AdbTest/src/com/android/adb/ |
AdbSocket.java | 56 switch (message.getCommand()) {
|
AdbDevice.java | 166 int command = message.getCommand();
|
AdbMessage.java | 73 public int getCommand() {
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
CommandPacket.java | 110 public byte getCommand() {
|
PacketDispatcher.java | 297 + command.getCommand() + "..."); 368 + command.getCommand() + "...");
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/ |
DepthFirstAdapter.java | 54 List<PCommand> copy = new ArrayList<PCommand>(node.getCommand()); 285 if(node.getCommand() != null) 287 node.getCommand().apply(this); 314 if(node.getCommand() != null) 316 node.getCommand().apply(this); 347 if(node.getCommand() != null) 349 node.getCommand().apply(this); 380 if(node.getCommand() != null) 382 node.getCommand().apply(this); 417 if(node.getCommand() != null [all...] |
ReversedDepthFirstAdapter.java | 54 List<PCommand> copy = new ArrayList<PCommand>(node.getCommand()); 278 if(node.getCommand() != null) 280 node.getCommand().apply(this); 307 if(node.getCommand() != null) 309 node.getCommand().apply(this); 336 if(node.getCommand() != null) 338 node.getCommand().apply(this); 369 if(node.getCommand() != null) 371 node.getCommand().apply(this); 402 if(node.getCommand() != null [all...] |
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/ |
BrailleKeyBinding.java | 58 public int getCommand() {
|
BrailleInputEvent.java | 198 public int getCommand() {
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
AMultipleCommand.java | 38 public LinkedList<PCommand> getCommand()
|
AOptimizedMultipleCommand.java | 21 LinkedList<PCommand> originalChildCommands = originalNode.getCommand();
|
AInlineCommand.java | 67 public PCommand getCommand()
|
AAltCommand.java | 97 public PCommand getCommand()
|
AAutoescapeCommand.java | 97 public PCommand getCommand()
|
AEachCommand.java | 127 public PCommand getCommand()
|
AEscapeCommand.java | 97 public PCommand getCommand()
|
ALoopToCommand.java | 127 public PCommand getCommand()
|
AWithCommand.java | 127 public PCommand getCommand()
|
ADefCommand.java | 118 public PCommand getCommand()
|
ALoopCommand.java | 157 public PCommand getCommand()
|
ALoopIncCommand.java | 187 public PCommand getCommand()
|
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
TemplateInterpreter.java | 263 node.getCommand().apply(this); 282 node.getCommand().apply(this); 306 node.getCommand().apply(this); 324 loop(node.getVariable(), 0, end, 1, node.getCommand()); 341 loop(node.getVariable(), start, end, 1, node.getCommand()); 365 loop(node.getVariable(), start, end, incr, node.getCommand()); 381 each(node.getVariable(), variableValue.getName(), parent, node.getCommand()); 397 node.getCommand().apply(this); 448 context.registerMacro(macroName, new InterpretedMacro(node.getCommand(), template, macroName,
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
TemplateTranslator.java | 316 writeEach(node.getVariable(), parent, node.getCommand()); 355 node.getCommand().apply(this); 379 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); 392 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); 406 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); 495 node.getCommand().apply(this); 535 node.getCommand().apply(this); 552 node.getCommand().apply(this); 687 node.getCommand().apply(TemplateTranslator.this); [all...] |