HomeSort by relevance Sort by last modified time
    Searched defs:Command (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /system/extras/simpleperf/
command.h 25 class Command {
27 Command(const std::string& name, const std::string& short_help_string,
33 virtual ~Command() {
51 static Command* FindCommandByName(const std::string& cmd_name);
52 static const std::vector<Command*>& GetAllCommands();
59 static void RegisterCommand(Command* cmd);
60 static void UnRegisterCommand(Command* cmd);
62 DISALLOW_COPY_AND_ASSIGN(Command);
  /external/clang/test/CodeGenCXX/
2005-02-19-BitfieldStructCrash.cpp 5 struct Command {
6 Command(QChar c) : c(c) {}
11 Command X(QChar('c'));
  /external/bison/doc/
refcard.tex 315 \section{Command Line Options}
511 % compile-command: "tex refcard"
  /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/av/include/media/
IStreamSource.h 50 enum Command {
69 // command.
92 Command cmd, bool synchronous, const sp<AMessage> &msg = NULL) = 0;
  /frameworks/av/services/audioflinger/
FastThreadState.h 33 typedef uint32_t Command;
34 static const Command
41 Command mCommand; // current command
49 // returns NULL if command belongs to a subclass
50 static const char *commandToString(Command command);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
clean.py 1 """distutils.command.clean
3 Implements the Distutils 'clean' command."""
10 from distutils.core import Command
14 class clean(Command):
16 description = "clean up temporary files from 'build' command"
install_data.py 1 """distutils.command.install_data
3 Implements the Distutils 'install_data' command, for installing
11 from distutils.core import Command
14 class install_data(Command):
install_egg_info.py 1 """distutils.command.install_egg_info
3 Implements the Distutils 'install_egg_info' command, for installing
7 from distutils.cmd import Command
11 class install_egg_info(Command):
install_headers.py 1 """distutils.command.install_headers
3 Implements the Distutils 'install_headers' command, to install C/C++ header
8 from distutils.core import Command
12 class install_headers(Command):
install_scripts.py 1 """distutils.command.install_scripts
3 Implements the Distutils 'install_scripts' command, for installing
11 from distutils.core import Command
15 class install_scripts (Command):
bdist.py 1 """distutils.command.bdist
3 Implements the Distutils 'bdist' command (create a built [binary]
11 from distutils.core import Command
27 class bdist(Command):
130 # Reinitialize and run each command.
142 # If we're going to need to run this command again, tell it to
bdist_dumb.py 1 """distutils.command.bdist_dumb
3 Implements the Distutils 'bdist_dumb' command (create a "dumb" built
14 from distutils.core import Command
19 class bdist_dumb (Command):
build.py 1 """distutils.command.build
3 Implements the Distutils 'build' command."""
10 from distutils.core import Command
17 class build(Command):
129 # -- Predicates for the sub-command list ---------------------------
build_clib.py 1 """distutils.command.build_clib
3 Implements the Distutils 'build_clib' command, to build a C/C++ library
20 from distutils.core import Command
30 class build_clib(Command):
72 # to build-temp as defined by the "build" command. This is because
122 `library` is presumably provided as a command option 'libraries'.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
config.py 3 Provides the PyPIRCCommand class, the base class for the command classes
4 that uses .pypirc in the distutils.command package.
9 from distutils.cmd import Command
21 class PyPIRCCommand(Command):
22 """Base command that knows how to handle the .pypirc file
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
clean.py 1 """distutils.command.clean
3 Implements the Distutils 'clean' command."""
10 from distutils.core import Command
14 class clean(Command):
16 description = "clean up temporary files from 'build' command"
install_data.py 1 """distutils.command.install_data
3 Implements the Distutils 'install_data' command, for installing
11 from distutils.core import Command
14 class install_data(Command):
install_egg_info.py 1 """distutils.command.install_egg_info
3 Implements the Distutils 'install_egg_info' command, for installing
7 from distutils.cmd import Command
11 class install_egg_info(Command):
install_headers.py 1 """distutils.command.install_headers
3 Implements the Distutils 'install_headers' command, to install C/C++ header
8 from distutils.core import Command
12 class install_headers(Command):
install_scripts.py 1 """distutils.command.install_scripts
3 Implements the Distutils 'install_scripts' command, for installing
11 from distutils.core import Command
15 class install_scripts (Command):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
config.py 3 Provides the PyPIRCCommand class, the base class for the command classes
4 that uses .pypirc in the distutils.command package.
9 from distutils.cmd import Command
21 class PyPIRCCommand(Command):
22 """Base command that knows how to handle the .pypirc file
  /external/icu/icu4c/source/test/perf/utrie2perf/
utrie2perf.cpp 93 class Command : public UPerfFunction {
95 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {}
98 virtual ~Command() {}
113 class CheckFCD : public Command {
115 CheckFCD(const UTrie2PerfTest &testcase) : Command(testcase) {}
133 class CheckFCDAlwaysGet : public Command {
135 CheckFCDAlwaysGet(const UTrie2PerfTest &testcase) : Command(testcase) {}
154 class CheckFCDUTF8 : public Command {
156 CheckFCDUTF8(const UTrie2PerfTest &testcase) : Command(testcase) {}
171 class ToNFC : public Command {
    [all...]
  /frameworks/base/cmds/svc/src/com/android/commands/svc/
Svc.java 21 public static abstract class Command {
24 public Command(String name) {
34 public abstract void run(String[] args); // run the command
39 Command c = lookupCommand(args[0]);
48 private static Command lookupCommand(String name) {
51 Command c = COMMANDS[i];
59 public static final Command COMMAND_HELP = new Command("help") {
68 Command c = lookupCommand(args[1]);
79 Command c = COMMANDS[i]
    [all...]
  /frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
Launcher.java 24 * Entry point into the uiautomator command line
27 * command line arguments. It also prints out help arguments for each sub commands.
29 * To add a new sub command, implement {@link Command} and add an instance into COMMANDS array
36 public static abstract class Command {
39 public Command(String name) {
44 * Returns the name of the sub command
52 * Returns a one-liner of the function of this command
58 * Returns a detailed explanation of the command usage
66 * Starts the command with the provided argument
76 Command command = findCommand(args[0]); local
    [all...]

Completed in 370 milliseconds

1 2 3 4 5 6