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

1 2 3 4

  /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 181 if (!strcmp(argv[0], c->getCommand())) {
183 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()) {
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSettings.java 57 protected String getCommand() {
EasOptions.java 75 protected String getCommand() {
EasOperation.java 240 LogUtils.e(LOG_TAG, "CommandStatusException: %s, %d", getCommand(), status);
276 getCommand());
307 getCommand(), response.getStatus(), result);
379 protected abstract String getCommand();
415 return mConnection.makeUriString(getCommand());
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Dicttool.java 64 private Command getCommand(final String[] arguments) {
81 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/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/display/
BrailleKeyBinding.java 58 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()
  /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 389 milliseconds

1 2 3 4