HomeSort by relevance Sort by last modified time
    Searched refs:getCommand (Results 1 - 25 of 62) sorted by null

1 2 3

  /system/core/include/sysutils/
FrameworkCommand.h 34 const char *getCommand() { return mCommand; }
  /system/core/libsysutils/src/
FrameworkCommand.cpp 29 SLOGW("Command %s has no run handler!", getCommand());
FrameworkListener.cpp 176 if (!strcmp(argv[0], c->getCommand())) {
178 SLOGW("Handler '%s' error (%s)", c->getCommand(), strerror(errno));
  /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() {
  /packages/inputmethods/LatinIME/tools/dicttool/src/android/inputmethod/latin/dicttool/
Dicttool.java 65 private Command getCommand(final String[] arguments) {
77 final Command command = getCommand(arguments);
  /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...]
  /packages/apps/Mms/src/com/android/mms/ui/
AttachmentTypeSelectorAdapter.java 49 return item.getCommand();
97 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()
  /tools/motodev/src/plugins/db.devices/src/com/motorolamobility/studio/android/db/devices/ui/action/
FilterDbApplicationHandler.java 57 boolean oldValue = HandlerUtil.toggleCommandState(event.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...]

Completed in 556 milliseconds

1 2 3