/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
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 111 response = self._ExecuteCommand(Command.NEW_SESSION, params) 145 def _ExecuteCommand(self, command, params={}): 147 response = self._executor.Execute(command, params) 152 def ExecuteCommand(self, command, params={}): 154 response = self._ExecuteCommand(command, params) 158 return self.ExecuteCommand(Command.GET_WINDOW_HANDLES) 161 self.ExecuteCommand(Command.SWITCH_TO_WINDOW, {'name': handle_or_name}) 164 return self.ExecuteCommand(Command.GET_CURRENT_WINDOW_HANDLE) 167 self.ExecuteCommand(Command.CLOSE [all...] |
command_executor.py | 15 class Command(object): 149 def Execute(self, command, params): 150 url_parts = command[1].split('/') 161 if command[0] == _Method.POST: 163 self._http_client.request(command[0], '/'.join(substituted_parts), body)
|
/external/chromium_org/v8/tools/push-to-trunk/ |
common_includes.py | 177 def Command(cmd, args="", prefix="", pipe=True): 180 print "Command: %s" % cmd_line 192 def Command(self, cmd, args="", prefix="", pipe=True): 193 return Command(cmd, args, prefix, pipe) 287 cmd = lambda: self._side_effect_handler.Command("git", args, prefix, pipe) 292 return self._side_effect_handler.Command(os.environ["EDITOR"], args, 352 Command("which", os.environ["EDITOR"]) is None)): 393 Command("rm", "-f %s*" % self._config[PERSISTFILE_BASENAME])
|
test_scripts.py | 296 def Command(self, cmd, args="", prefix="", pipe=True): 330 Command("rm", "-rf %s*" % TEST_CONFIG[PERSISTFILE_BASENAME]) 348 self.assertTrue(Command("git", "--version").startswith("git version")) 700 # since the git command that merges to the bleeding edge branch is mocked
|
/external/llvm/tools/bugpoint/ |
ToolRunner.cpp | 283 // Custom compiler command implementation of AbstractIntepreter interface 285 // Allows using a custom command for compiling the bitcode, thus allows, for 344 // Custom execution command implementation of AbstractIntepreter interface 346 // Allows using a custom command for executing the bitcode, thus allows, 399 // Tokenize the CommandLine to the command and the args to allow 400 // defining a full command line as the command instead of just the 401 // executed program. We cannot just pass the whole string after the command 403 // command line argument (with spaces in it: "foo bar" instead 411 std::string Command = "" [all...] |
/external/llvm/tools/llvm-objdump/ |
MachODump.cpp | 170 MachOObjectFile::LoadCommandInfo Command = 174 if (Command.C.Type == macho::LCT_FunctionStarts) { 178 MachOObj->getLinkeditDataLoadCommand(Command); 182 else if (Command.C.Type == macho::LCT_Segment) { 184 MachOObj->getSegmentLoadCommand(Command); 195 Command = MachOObj->getNextLoadCommandInfo(Command); 251 // 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 | 43 private static final class Command { 57 private LinkedList<Command> mCmdQueue = new LinkedList(); 68 public Command mCmd; 69 public CreationAndCompletionThread(Command cmd) { 110 // command are issued, and on which it receives the completion callbacks. 127 private void startSound(Command cmd) { 169 Command cmd = null; 202 Log.w(mTag, "STOP command without a player"); 285 Command cmd = new Command(); [all...] |
/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...] |
/external/chromium/net/ftp/ |
ftp_network_transaction.h | 50 enum Command { 66 // Major categories of remote system types, as returned by SYST command. 128 // issued command. Returns error code. 131 int SendFtpCommand(const std::string& command, Command cmd); 133 // Returns request path suitable to be included in an FTP command. If the path 187 Command command_sent_; 210 // Buffer holding the command line to be written to the control socket. 221 // Data type to be used for the TYPE command. 234 // Current directory on the remote server, as returned by last PWD command, [all...] |
/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/java/com/android/server/ |
NativeDaemonConnector.java | 233 * Make command for daemon, escaping arguments as needed. 239 throw new IllegalArgumentException("Unexpected command: " + cmd); 242 throw new IllegalArgumentException("Arguments must be separate from command"); 268 * Issue the given command to the native daemon and return a single expected 276 public NativeDaemonEvent execute(Command cmd) throws NativeDaemonConnectorException { 281 * Issue the given command to the native daemon and return a single expected 282 * response. Any arguments must be separated from base command so they can 301 * Issue the given command to the native daemon and return any 310 public NativeDaemonEvent[] executeForList(Command cmd) throws NativeDaemonConnectorException { 315 * 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...] |
/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...] |
/external/chromium_org/chrome/browser/resources/bookmark_manager/js/ |
main.js | 8 /** @const */ var Command = cr.ui.Command; 74 * Command shortcut mapping. 86 // Global undo is Command-Z. It is not in any menu. 241 // Activate is handled by the open-in-same-window-command. 244 $('open-in-same-window-command').execute(); 397 * @param {!cr.ui.CanExecuteEvent} e The event fired by the command system. 398 * @param {!cr.ui.Command} command The command we are currently processing [all...] |
/external/chromium_org/chrome/browser/resources/enhanced_bookmark_manager/js/ |
main.js | 8 /** @const */ var Command = cr.ui.Command; 74 * Command shortcut mapping. 86 // Global undo is Command-Z. It is not in any menu. 238 // Activate is handled by the open-in-same-window-command. 241 $('open-in-same-window-command').execute(); 385 * @param {!cr.ui.CanExecuteEvent} e The event fired by the command system. 386 * @param {!cr.ui.Command} command The command we are currently processing [all...] |
/external/clang/lib/AST/ |
CommentSema.cpp | 61 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command, 63 Command->setArgs(Args); 66 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command, 68 Command->setParagraph(Paragraph); 69 checkBlockCommandEmptyParagraph(Command); 70 checkBlockCommandDuplicate(Command); 71 checkReturnsCommand(Command); 72 checkDeprecatedCommand(Command); 80 ParamCommandComment *Command = 85 Diag(Command->getLocation() [all...] |
/frameworks/base/cmds/content/src/com/android/commands/content/ |
Content.java | 33 * This class is a command line utility for manipulating content. A client 144 public Command parseCommand() { 359 private static abstract class Command { 363 public Command(Uri uri, int userId) { 396 private static class InsertCommand extends Command { 410 private static class DeleteCommand extends Command { 424 private static class CallCommand extends Command { 542 Command command = parser.parseCommand(); local 543 if (command != null) [all...] |
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/ |
TextGraphReader.java | 41 private ArrayList<Command> mCommands = new ArrayList<Command>(); 48 private interface Command { 52 private class ImportPackageCommand implements Command { 69 private class AddLibraryCommand implements Command { 82 private class AllocateFilterCommand implements Command { 105 private class InitFilterCommand implements Command { 124 private class ConnectCommand implements Command { 212 String curCommand = scanner.eat(commandPattern, "<command>"); 228 throw new GraphIOException("Unknown command '" + curCommand + "'!") [all...] |
/external/chromium_org/chrome/browser/resources/history/ |
history.js | 31 /** @const */ var Command = cr.ui.Command; 174 // which element to apply the command to. [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
EditorCommand.cpp | 273 // Execute command functions 365 // Despite its name, this command should delete the newline at the end of 373 // Despite its name, this command should delete the newline at the end of 445 RefPtr<FormatBlockCommand> command = FormatBlockCommand::create(*frame.document(), qualifiedTagName); local 446 command->apply(); 447 return command->didApply(); 1432 EditorInternalCommand command; member in struct:WebCore::CommandEntry 1641 Editor::Command Editor::command(const String& commandName) function in class:WebCore::Editor 1646 Editor::Command Editor::command(const String& commandName, EditorCommandSource source) function in class:WebCore::Editor [all...] |