HomeSort by relevance Sort by last modified time
    Searched refs:Command (Results 151 - 175 of 464) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/tools/cr/cr/commands/
info.py 5 """A module for the info implementation of Command."""
10 class InfoCommand(cr.Command):
11 """The cr info command implementation."""
run.py 5 """A module for the run command."""
10 class RunCommand(cr.Command):
11 """The implementation of the run command.
sync.py 5 """A module for the sync command."""
12 class SyncCommand(cr.Command):
13 """The implementation of the sync command.
15 This command is a very thin shim over the gclient sync, and should remain so.
20 # The configuration loaded to support this command.
  /external/chromium_org/tools/telemetry/
cloud_storage 67 class Ls(command_line.Command):
113 class Mv(command_line.Command):
148 class Rm(command_line.Command):
163 class Upload(command_line.Command):
  /external/emma/core/java12/com/vladium/emma/
Command.java 7 * $Id: Command.java,v 1.1.1.1.2.1 2004/07/16 23:32:03 vlad_r Exp $
31 abstract class Command
36 public static Command create (final String name, final String usageName, final String [] args)
38 final Command tool;
51 throw new IllegalArgumentException ("unknown command: [" + name + "]");
63 protected Command (final String usageToolName, final String [] args)
158 // command line user overrides are have highest precedence:
  /external/lzma/CPP/7zip/UI/Common/
ArchiveCommandLine.h 66 CArchiveCommand Command;
  /frameworks/av/services/audioflinger/
FastMixer.h 51 virtual bool isSubClassCommand(FastThreadState::Command command);
  /frameworks/base/cmds/svc/src/com/android/commands/svc/
PowerCommand.java 26 public class PowerCommand extends Svc.Command {
  /frameworks/base/tools/aapt/
Android.mk 33 Command.cpp \
Bundle.h 4 // State bundle. Used to pass around stuff like command-line args.
33 typedef enum Command {
44 } Command;
56 * Bundle of goodies, including everything specified on the command line.
84 * Set the command value. Returns "false" if it was previously set.
86 Command getCommand(void) const { return mCmd; }
87 void setCommand(Command cmd) { mCmd = cmd; }
90 * Command modifiers. Not all modifiers are appropriate for all
250 * the command line. If neither, it's not available since
274 Command mCmd
    [all...]
  /frameworks/wilhelm/src/android/
android_StreamPlayer.h 51 void receivedCmd_l(IStreamListener::Command cmd, const sp<AMessage> &msg = NULL);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
usbstorioctl.h 14 UCHAR Command;
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 165 MachOObjectFile::LoadCommandInfo Command =
169 if (Command.C.cmd == MachO::LC_FUNCTION_STARTS) {
173 MachOObj->getLinkeditDataLoadCommand(Command);
177 else if (Command.C.cmd == MachO::LC_SEGMENT) {
179 MachOObj->getSegmentLoadCommand(Command);
190 Command = MachOObj->getNextLoadCommandInfo(Command);
248 // FIXME: Using the -cfg command line option, this code used to be able to
  /external/chromium_org/content/browser/devtools/
devtools_tracing_handler.cc 140 scoped_refptr<DevToolsProtocol::Command> command) {
142 base::DictionaryValue* params = command->params();
187 command));
189 return command->AsyncResponsePromise();
193 scoped_refptr<DevToolsProtocol::Command> command) {
194 SendAsyncResponse(command->SuccessResponse(NULL));
205 scoped_refptr<DevToolsProtocol::Command> command) {
    [all...]
renderer_overrides_handler.cc 228 DevToolsProtocol::Command* command,
236 base::DictionaryValue* params = command->params();
284 scoped_refptr<DevToolsProtocol::Command> command) {
285 base::DictionaryValue* params = command->params();
290 return command->InvalidParamResponse(param);
298 return command->InvalidParamResponse(param);
310 scoped_refptr<DevToolsProtocol::Command> command) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 160 class Command:
206 class InsertCommand(Command):
208 # Undoable insert command
211 Command.__init__(self, index1, None, chars, tags)
264 class DeleteCommand(Command):
266 # Undoable delete command
269 Command.__init__(self, index1, index2, None, None)
300 class CommandSequence(Command):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 160 class Command:
206 class InsertCommand(Command):
208 # Undoable insert command
211 Command.__init__(self, index1, None, chars, tags)
264 class DeleteCommand(Command):
266 # Undoable delete command
269 Command.__init__(self, index1, index2, None, None)
300 class CommandSequence(Command):
  /external/chromium_org/chrome/browser/ui/
browser_window.h 49 class Command;
396 // Executes |command| registered by |extension|.
398 const extensions::Command& command) = 0;
  /external/chromium_org/chrome/browser/ui/views/toolbar/
toolbar_view.h 34 class Command;
90 // Executes |command| registered by |extension|.
92 const extensions::Command& command);
  /external/chromium_org/v8/tools/push-to-trunk/
common_includes.py 174 def Command(cmd, args="", prefix="", pipe=True):
177 print "Command: %s" % cmd_line
196 def Command(self, cmd, args="", prefix="", pipe=True):
197 return Command(cmd, args, prefix, pipe)
310 cmd = lambda: self._side_effect_handler.Command("git", args, prefix, pipe)
317 cmd = lambda: self._side_effect_handler.Command("svn", args, prefix, pipe)
322 return self._side_effect_handler.Command(os.environ["EDITOR"], args,
367 Command("which", os.environ["EDITOR"]) is None)): # pragma: no cover
391 Command("rm", "-f %s*" % self._config[PERSISTFILE_BASENAME])
  /external/emma/core/java12/com/vladium/emma/instr/
instrCommand.java 16 import com.vladium.emma.Command;
26 final class instrCommand extends Command
  /external/llvm/utils/lit/lit/
ShCommands.py 1 class Command:
7 return 'Command(%r, %r)' % (self.args, self.redirects)
10 if not isinstance(other, Command):
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 41 * This class is a command line utility for manipulating content. A client
159 public Command parseCommand() {
395 private static abstract class Command {
399 public Command(Uri uri, int userId) {
432 private static class InsertCommand extends Command {
446 private static class DeleteCommand extends Command {
460 private static class CallCommand extends Command {
497 private static class ReadCommand extends Command {
603 Command command = parser.parseCommand() local
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/command/
type_printers.py 22 class InfoTypePrinter(gdb.Command):
23 """GDB command to list all registered type-printers.
46 """GDB calls this to perform the command."""
61 class _EnableOrDisableCommand(gdb.Command):
75 """GDB calls this to perform the command."""
102 """GDB command to enable the specified type printer.
113 """GDB command to disable the specified type-printer.
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/command/
type_printers.py 22 class InfoTypePrinter(gdb.Command):
23 """GDB command to list all registered type-printers.
46 """GDB calls this to perform the command."""
61 class _EnableOrDisableCommand(gdb.Command):
75 """GDB calls this to perform the command."""
102 """GDB command to enable the specified type printer.
113 """GDB command to disable the specified type-printer.

Completed in 1243 milliseconds

1 2 3 4 5 67 8 91011>>