HomeSort by relevance Sort by last modified time
    Searched defs:Command (Results 101 - 125 of 160) sorted by null

1 2 3 45 6 7

  /prebuilts/python/darwin-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/darwin-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/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/distutils/
cmd.py 3 Provides the Command class, the base class for the command classes
4 in the distutils.command package.
14 class Command:
15 """Abstract base class for defining command classes, the "worker bees"
16 of the Distutils. A useful analogy for command classes is to think of
20 must be defined by every command class. The distinction between the
22 world (command line, config file, ...), and any options dependent on
27 command class.
35 # tuples, where 'predicate' is a method of the parent command tha
    [all...]
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/command/
build_ext.py 1 """distutils.command.build_ext
3 Implements the Distutils 'build_ext' command, for building extension
14 from distutils.core import Command
38 class build_ext (Command):
42 # XXX thoughts on how to deal with complex command-line options like
44 # command line and make it look like setup.py defined the appropriate
46 # - each command needs a callback to process its command-line options
47 # - Command.__init__() needs access to its share of the whole
48 # command line (must ultimately come fro
    [all...]
install.py 1 """distutils.command.install
3 Implements the Distutils 'install' command."""
13 from distutils.core import Command
123 class install (Command):
236 # out-of-date. 'skip_build' skips running the "build" command,
245 # These are only here as a conduit from the 'build' command to the
249 # command where the build directory is, that wouldn't affect the
250 # build command.
594 # -- Command execution methods -------------------------------------
682 # -- Predicates for sub-command list ------------------------------
    [all...]
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):
  /external/chromium_org/chrome/test/chromedriver/client/
chromedriver.py 6 from command_executor import Command
121 response = self._ExecuteCommand(Command.NEW_SESSION, params)
155 def _ExecuteCommand(self, command, params={}):
157 response = self._executor.Execute(command, params)
162 def ExecuteCommand(self, command, params={}):
164 response = self._ExecuteCommand(command, params)
168 return self.ExecuteCommand(Command.GET_WINDOW_HANDLES)
171 self.ExecuteCommand(Command.SWITCH_TO_WINDOW, {'name': handle_or_name})
174 return self.ExecuteCommand(Command.GET_CURRENT_WINDOW_HANDLE)
177 self.ExecuteCommand(Command.CLOSE
    [all...]
command_executor.py 15 class Command(object):
153 def Execute(self, command, params):
154 url_parts = command[1].split('/')
165 if command[0] == _Method.POST:
167 self._http_client.request(command[0], '/'.join(substituted_parts), body)
  /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])
test_scripts.py 366 # in merge-to-branch. The command should be made explicit in the test
375 def Command(self, cmd, args="", prefix="", pipe=True):
413 Command("rm", "-rf %s*" % TEST_CONFIG[PERSISTFILE_BASENAME])
425 self.assertTrue(Command("git", "--version").startswith("git version"))
788 # since the git command that merges to the bleeding edge branch is mocked
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 284 // Custom compiler command implementation of AbstractIntepreter interface
286 // Allows using a custom command for compiling the bitcode, thus allows, for
345 // Custom execution command implementation of AbstractIntepreter interface
347 // Allows using a custom command for executing the bitcode, thus allows,
400 // Tokenize the CommandLine to the command and the args to allow
401 // defining a full command line as the command instead of just the
402 // executed program. We cannot just pass the whole string after the command
404 // command line argument (with spaces in it: "foo bar" instead
412 std::string Command = ""
    [all...]
  /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
  /frameworks/base/packages/SystemUI/src/com/android/systemui/media/
NotificationPlayer.java 44 private static final class Command {
58 private LinkedList<Command> mCmdQueue = new LinkedList();
69 public Command mCmd;
70 public CreationAndCompletionThread(Command cmd) {
113 // command are issued, and on which it receives the completion callbacks.
130 private void startSound(Command cmd) {
172 Command cmd = null;
205 Log.w(mTag, "STOP command without a player");
290 Command cmd = new Command();
    [all...]
  /ndk/tests/abcc/jni/
Abcc.h 39 enum Command {
  /packages/apps/Mms/src/com/android/mms/transaction/
NotificationPlayer.java 48 private static final class Command {
64 private LinkedList<Command> mCmdQueue = new LinkedList<Command>();
75 public Command mCmd;
76 public CreationAndCompletionThread(Command cmd) {
122 private void startSound(Command cmd) {
165 Command cmd = null;
194 Log.w(mTag, "STOP command without a player");
274 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_org/net/ftp/
ftp_network_transaction.h 54 enum Command {
70 // Major categories of remote system types, as returned by SYST command.
135 // issued command. Returns error code.
138 int SendFtpCommand(const std::string& command,
140 Command cmd);
142 // Returns request path suitable to be included in an FTP command. If the path
197 Command command_sent_;
220 // Buffer holding the command line to be written to the control socket.
231 // Data type to be used for the TYPE command.
243 // Current directory on the remote server, as returned by last PWD command,
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NativeDaemonConnector.java 269 * Make command for daemon, escaping arguments as needed.
275 throw new IllegalArgumentException("Unexpected command: " + cmd);
278 throw new IllegalArgumentException("Arguments must be separate from command");
304 * Issue the given command to the native daemon and return a single expected
312 public NativeDaemonEvent execute(Command cmd) throws NativeDaemonConnectorException {
317 * Issue the given command to the native daemon and return a single expected
318 * response. Any arguments must be separated from base command so they can
337 * Issue the given command to the native daemon and return any
346 public NativeDaemonEvent[] executeForList(Command cmd) throws NativeDaemonConnectorException {
351 * Issue the given command to the native daemon and return an
    [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/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...]
  /device/moto/shamu/camera/QCamera2/HAL/test/
qcamera_test.h 256 struct Command {
257 Command( Commands_e cmd, char *arg = NULL)
260 Command()
275 Command getCommand(sp<CameraContext> currentCamera);
292 Vector<Command> mCommands;

Completed in 1016 milliseconds

1 2 3 45 6 7