HomeSort by relevance Sort by last modified time
    Searched defs:Command (Results 176 - 200 of 270) sorted by null

1 2 3 4 5 6 78 91011

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 1 """distutils.command.sdist
3 Implements the Distutils 'sdist' command (create a source distribution)."""
13 from distutils.core import Command
24 the "--help-formats" command-line option).
36 class sdist(Command):
41 """Callable used for the check sub-command.
172 warn("distutils.command.sdist.check_metadata is deprecated, \
173 use the check command instead", PendingDeprecationWarning)
474 """Return the list of archive files created when the command
475 was run, or None if the command hasn't run yet
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_dist.py 12 from distutils.cmd import Command
18 class test_dist(Command):
19 """Sample distutils extension command."""
87 self.assertEqual(d.get_command_packages(), ["distutils.command"])
91 sys.argv.extend(["--command-packages",
97 # let's actually try to load our test command:
99 ["distutils.command", "foo.bar", "distutils.tests"])
116 ["distutils.command", "foo.bar", "splat"])
118 # ensure command line overrides config:
119 sys.argv[1:] = ["--command-packages", "spork", "build"
    [all...]
  /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):
  /system/core/init/
action.cpp 34 Command::Command(BuiltinFunction f, const std::vector<std::string>& args,
39 int Command::InvokeFunc() const {
53 std::string Command::BuildCommandString() const {
57 std::string Command::BuildSourceString() const {
78 *err = "command needed, but not provided";
107 void Action::ExecuteOneCommand(std::size_t command) const {
108 ExecuteCommand(commands_[command]);
117 void Action::ExecuteCommand(const Command& command) const
    [all...]
  /external/avahi/avahi-utils/
avahi-browse.c 59 } Command;
68 Command command; member in struct:Config
546 if (config->command == COMMAND_BROWSE_DOMAINS) {
557 if (config->command == COMMAND_BROWSE_SERVICES)
559 else if (config->command == COMMAND_BROWSE_ALL_SERVICES)
562 assert(config->command == COMMAND_BROWSE_DOMAINS);
693 c->command = strstr(argv0, "domain") ? COMMAND_BROWSE_DOMAINS : COMMAND_BROWSE_SERVICES;
715 c->command = COMMAND_HELP;
718 c->command = COMMAND_VERSION
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/
setup.py 540 from distutils.core import Command
545 class upload_docs (Command):
621 # 'upload' command.
745 class test (Command):
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/
setup.py 540 from distutils.core import Command
545 class upload_docs (Command):
621 # 'upload' command.
745 class test (Command):
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
config.py 15 """Implementation of config command for creating a gsutil configuration file."""
39 from gslib.command import Command
63 The gsutil config command obtains access credentials for Google Cloud
70 to ~/.boto.bak; if that attempt fails the command will exit. A different
153 values found in there tend to be of more specialized use than command line
331 # Note: 'gsutil -d' sets debug to 2 for that one command run.
459 # 'use_magicfile' specifies if the 'file --mime-type <filename>' command should
499 # the gsutil command supports this API for the provider, it will be used
574 class ConfigCommand(Command)
    [all...]
rsync.py 15 """Implementation of Unix-like rsync command."""
36 from gslib.command import Command
37 from gslib.command import DummyArgChecker
68 The gsutil rsync command makes the contents under dst_url the same as the
129 instead run the command:
138 command:
147 specify with the rsync command, there are two more safety measures your can
150 1. Try running the command with the rsync -n option first, to see what it
152 you run the command
    [all...]
  /external/deqp/scripts/khr_util/
registry.py 73 class Command(Located):
188 self.commands = CommandIndex(eRegistry.findall('commands/command'))
257 for commandName in eComponent.xpath('command/@name'):
327 info('Add command %s', commandName)
331 Command, eCmd,
362 createMissing=Command, kind="command")
367 for command in commands:
368 alias = command.alias
373 command.alias = Non
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 265 // Custom compiler command implementation of AbstractIntepreter interface
267 // Allows using a custom command for compiling the bitcode, thus allows, for
326 // Custom execution command implementation of AbstractIntepreter interface
328 // Allows using a custom command for executing the bitcode, thus allows,
381 // Tokenize the CommandLine to the command and the args to allow
382 // defining a full command line as the command instead of just the
383 // executed program. We cannot just pass the whole string after the command
385 // command line argument (with spaces in it: "foo bar" instead
393 std::string Command = ""
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/server/
AbstractFtpServer.java 21 import org.mockftpserver.core.command.Command;
22 import org.mockftpserver.core.command.CommandHandler;
40 * server commands (e.g. RETR, DELE, LIST). These handlers implement the {@link org.mockftpserver.core.command.CommandHandler}
50 * <h4>Command Handlers</h4>
51 * You can set the existing {@link CommandHandler} defined for an FTP server command
53 * in the FTP server command name and {@link CommandHandler} instance.
54 * You can also replace multiple command handlers at once by using the {@link #setCommandHandlers(Map)}
57 * You can retrieve the existing {@link CommandHandler} defined for an FTP server command by
58 * calling the {@link #getCommandHandler(String)} method, passing in the FTP server command name.
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/media/
NotificationPlayer.java 45 private static final class Command {
59 private LinkedList<Command> mCmdQueue = new LinkedList();
70 public Command mCmd;
71 public CreationAndCompletionThread(Command cmd) {
114 // command are issued, and on which it receives the completion callbacks.
132 private void startSound(Command cmd) {
174 Command cmd = null;
207 Log.w(mTag, "STOP command without a player");
299 Command cmd = new Command();
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/
NotificationPlayer.java 47 private static final class Command {
63 private final LinkedList<Command> mCmdQueue = new LinkedList<Command>();
74 public Command mCmd;
75 public CreationAndCompletionThread(final Command cmd) {
117 private void startSound(final Command cmd) {
153 private void stopSound(final Command cmd) {
181 Command cmd = null;
279 final Command cmd = new Command();
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
smbus.h 80 UCHAR Command;
  /external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_parallelism_framework.py 34 from gslib.command import Command
35 from gslib.command import CreateGsutilLogger
36 from gslib.command import DummyArgChecker
124 cls: The Command class to call Apply on.
158 cls: The Command class to call Apply on.
201 class FakeCommand(Command):
202 """Fake command class for overriding command instance state."""
203 command_spec = Command.CreateCommandSpec
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 142 // command line.
146 // on the command line.
157 // Extract the member filename from the command line for the [relpos] argument
173 // Get the archive file name from the command line
189 // Parse the command line options as presented and return the operation
264 // At this point, the next thing on the command line must be
268 // Everything on the command line at this point is a member.
700 auto Command = StringSwitch<MRICommand>(CommandStr.lower())
708 switch (Command) {
744 fail("Unknown command: " + CommandStr)
    [all...]
  /external/v8/tools/release/
common_includes.py 189 def Command(cmd, args="", prefix="", pipe=True, cwd=None):
193 print "Command: %s" % cmd_line
237 def Command(self, cmd, args="", prefix="", pipe=True, cwd=None):
238 return Command(cmd, args, prefix, pipe, cwd=cwd)
492 def Command(self, name, args, cwd=None):
493 cmd = lambda: self._side_effect_handler.Command(
498 cmd = lambda: self._side_effect_handler.Command(
507 return self._side_effect_handler.Command(
555 self.Command(
753 self.Command("fetch", "v8", cwd=self._options.work_dir
    [all...]
test_scripts.py 271 """Convenience function returning a shell command test expectation."""
273 "name": "command",
409 def Command(self, cmd, args="", prefix="", pipe=True, cwd=None):
412 return self._mock.Call("command", cmd + " " + args, cwd=cwd)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 41 private static interface Command {
46 private ArrayList<Command> mCommands = new ArrayList<Command>();
58 for (Command command : mCommands) {
59 command.execute(this);
63 public void append(Command command) {
64 mCommands.add(command);
80 private static class ImportPackageCommand implements Command {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
dist.py 27 # Regex to define acceptable Distutils command names. This is not *quite*
30 # to look for a Python module named after the command.
37 to the Distutils commands specified on the command line.
49 # 'global_options' describes the command-line options that may be
53 # since every global option is also valid as a command option -- and we
136 filled in with real command objects by 'parse_command_line()'.
139 # Default values for our command-line options
148 # information here (and enough command-line options) that it's
156 # 'cmdclass' maps command names to class objects, so we
158 # we need to create a new command object, and 2) have a wa
722 import distutils.command namespace
757 import distutils.command namespace
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
dist.py 27 # Regex to define acceptable Distutils command names. This is not *quite*
30 # to look for a Python module named after the command.
37 to the Distutils commands specified on the command line.
49 # 'global_options' describes the command-line options that may be
53 # since every global option is also valid as a command option -- and we
136 filled in with real command objects by 'parse_command_line()'.
139 # Default values for our command-line options
148 # information here (and enough command-line options) that it's
156 # 'cmdclass' maps command names to class objects, so we
158 # we need to create a new command object, and 2) have a wa
722 import distutils.command namespace
757 import distutils.command namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dist.py 27 # Regex to define acceptable Distutils command names. This is not *quite*
30 # to look for a Python module named after the command.
37 to the Distutils commands specified on the command line.
49 # 'global_options' describes the command-line options that may be
53 # since every global option is also valid as a command option -- and we
136 filled in with real command objects by 'parse_command_line()'.
139 # Default values for our command-line options
148 # information here (and enough command-line options) that it's
156 # 'cmdclass' maps command names to class objects, so we
158 # we need to create a new command object, and 2) have a wa
722 import distutils.command namespace
757 import distutils.command namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dist.py 27 # Regex to define acceptable Distutils command names. This is not *quite*
30 # to look for a Python module named after the command.
37 to the Distutils commands specified on the command line.
49 # 'global_options' describes the command-line options that may be
53 # since every global option is also valid as a command option -- and we
136 filled in with real command objects by 'parse_command_line()'.
139 # Default values for our command-line options
148 # information here (and enough command-line options) that it's
156 # 'cmdclass' maps command names to class objects, so we
158 # we need to create a new command object, and 2) have a wa
722 import distutils.command namespace
757 import distutils.command namespace
    [all...]
  /system/tpm/trunks/generator/
generator.py 244 default: LOG(WARNING) << "Unknown command code: " << command_code;
    [all...]

Completed in 798 milliseconds

1 2 3 4 5 6 78 91011