/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/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/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/clang/include/clang/Driver/ |
Job.h | 26 class Command; 41 /// Command - An executable path/name and argument vector to 43 class Command { 60 /// Response file name, if this command is set to use one, or nullptr 73 /// exclusive file, while others remains as regular command line arguments. 74 /// This functions fills a vector with the regular command line arguments, 85 Command(const Action &Source, const Tool &Creator, const char *Executable, 90 Command(const Command &) = default; 91 virtual ~Command() {} [all...] |
/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...] |
/system/weaved/libweaved/ |
command.cc | 15 #include "libweaved/command.h" 55 Command::Command(const android::sp<android::weave::IWeaveCommand>& proxy) 58 Command::~Command() {} 60 std::string Command::GetID() const { 68 std::string Command::GetName() const { 76 std::string Command::GetComponent() const { 84 Command::State Command::GetState() const [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...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/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'.
|
build_scripts.py | 1 """distutils.command.build_scripts 3 Implements the Distutils 'build_scripts' command.""" 9 from distutils.core import Command 17 class build_scripts (Command):
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
core.py | 5 indirectly provides the Distribution and Command classes, although they are 21 from distutils.cmd import Command 28 # and per-command help. 64 Distribution instance; find and parse config files; parse the command 65 line; run each Distutils command found there, customized by the options 67 the command line. 75 The 'cmdclass' argument, if supplied, is a dictionary mapping command 76 names to command classes. Each command encountered on the command lin [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/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'.
|