/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist.py | 58 # The following commands do not take a format option from bdist 122 # Figure out which sub-commands we need to run. 123 commands = [] 126 commands.append(self.format_command[format][0]) 132 cmd_name = commands[i] 144 if cmd_name in commands[i+1:]:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist.py | 58 # The following commands do not take a format option from bdist 122 # Figure out which sub-commands we need to run. 123 commands = [] 126 commands.append(self.format_command[format][0]) 132 cmd_name = commands[i] 144 if cmd_name in commands[i+1:]:
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/ |
multicommandtool.py | 134 # main() exists so that Commands can be turned into stand-alone scripts. 138 # Some commands might require a dummy tool 178 make_option("-a", "--all-commands", action="store_true", dest="show_all_commands", help="Print all available commands"), 181 self.show_all_commands = False # A hack used to pass --all-commands to _help_epilog even though it's called by the OptionParser. 184 # Only show commands which are relevant to this checkout's SCM system. Might this be confusing to some users? 186 epilog = "All %prog commands:\n" 187 relevant_commands = self._tool.commands[:] 189 epilog = "Common %prog commands:\n" 190 relevant_commands = filter(self._tool.should_show_in_main_help, self._tool.commands) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
jsilver.sablecc | 175 = commands 176 {->commands.command} 179 commands {->command} 236 commands 242 commands.command)} 245 commands 251 commands.command)} 254 commands 261 commands.command)} 264 commands [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
token.ml | 8 (* commands *)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
token.ml | 8 (* commands *)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
token.ml | 8 (* commands *)
|
/external/qemu/ |
Android.mk | 2 # through the 'm' or 'mm' build commands. if not, we use the
|
/frameworks/native/cmds/installd/ |
Android.mk | 4 commands.c utils.c
|
/libcore/luni/src/test/java/tests/api/java/lang/ |
Process2Test.java | 48 String[] commands = {"ls"}; local 51 process = Runtime.getRuntime().exec(commands, null, null);
|
/libcore/luni/src/main/native/ |
java_lang_ProcessManager.cpp | 88 static pid_t ExecuteProcess(JNIEnv* env, char** commands, char** environment, 159 execvp(commands[0], commands); 212 ExecStrings commands(env, javaCommands); 221 pid_t result = ExecuteProcess(env, commands.get(), environment.get(), workingDirectory,
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ExtensionAPI.js | 74 apiPrivate.Commands = { 114 var commands = apiPrivate.Commands; 140 extensionServer.sendRequest({ command: commands.Subscribe, type: this._type }); 156 extensionServer.sendRequest({ command: commands.Unsubscribe, type: this._type }); 203 extensionServer.sendRequest({ command: commands.GetConsoleMessages }, callback); 208 extensionServer.sendRequest({ command: commands.AddConsoleMessage, severity: severity, text: text, url: url, line: line }); 248 return extensionServer.sendRequest({ command: commands.GetHAR }, callback && callbackWrapper); 253 return extensionServer.sendRequest({ command: commands.AddRequestHeaders, headers: headers, extensionId: window.location.hostname }); 272 extensionServer.sendRequest({ command: commands.GetRequestContent, id: this._id }, callback && callbackWrapper) [all...] |
ExtensionServer.js | 47 var commands = WebInspector.extensionAPI.Commands; 49 this._registerHandler(commands.AddAuditCategory, this._onAddAuditCategory.bind(this)); 50 this._registerHandler(commands.AddAuditResult, this._onAddAuditResult.bind(this)); 51 this._registerHandler(commands.AddConsoleMessage, this._onAddConsoleMessage.bind(this)); 52 this._registerHandler(commands.AddRequestHeaders, this._onAddRequestHeaders.bind(this)); 53 this._registerHandler(commands.ApplyStyleSheet, this._onApplyStyleSheet.bind(this)); 54 this._registerHandler(commands.CreatePanel, this._onCreatePanel.bind(this)); 55 this._registerHandler(commands.CreateSidebarPane, this._onCreateSidebarPane.bind(this)); 56 this._registerHandler(commands.CreateStatusBarButton, this._onCreateStatusBarButton.bind(this)) [all...] |
/packages/apps/VoiceDialer/src/com/android/voicedialer/ |
CommandRecognizerEngine.java | 43 * This is a RecognizerEngine that processes commands to make phone calls and 52 * the {@RecognizerClient}. It will accept the following types of commands: 970 String[] commands = semantic.trim().split(" "); local [all...] |
/cts/libs/vogar-expect/src/vogar/commands/ |
CommandFailedException.java | 17 package vogar.commands;
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyCommandEvent.java | 17 package com.android.commands.monkey;
|
MonkeyInstrumentationEvent.java | 17 package com.android.commands.monkey;
|
/external/chromium/chrome/browser/ui/gtk/ |
global_menu_bar.h | 44 GlobalMenuBarCommand* commands);
|
/external/chromium_org/chrome/browser/ui/gtk/extensions/ |
extension_keybinding_registry_gtk.cc | 9 #include "chrome/browser/extensions/api/commands/command_service.h" 63 extensions::CommandMap commands; local 68 &commands); 70 for (extensions::CommandMap::const_iterator iter = commands.begin(); 71 iter != commands.end(); ++iter) {
|
/external/chromium_org/chrome/browser/ui/gtk/ |
global_menu_bar.h | 55 GlobalMenuBarCommand* commands,
|
/external/chromium_org/chrome/browser/ui/webui/extensions/ |
command_handler.h | 32 // The handler page for the Extension Commands UI overlay. 51 // Update the list of extension commands in the config UI. 55 // the commands it contains. 71 // Fetches all known commands, active and inactive and returns them through 72 // |commands|. 73 void GetAllCommands(base::DictionaryValue* commands);
|
/external/chromium_org/chrome/test/functional/media/ |
audio_tools.py | 16 import commands namespace 42 _SOX_PATH = commands.getoutput('which sox') 43 _AUDIO_RECORDER = commands.getoutput('which arecord') 44 _PACMD_PATH = commands.getoutput('which pacmd')
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
gardenomatic.py | 26 from webkitpy.tool.commands.rebaseline import AbstractRebaseliningCommand
|
/external/chromium_org/tools/python/google/ |
process_utils.py | 136 def RunCommandsInParallel(commands, verbose=True, collect_output=False, 138 """Runs a list of commands in parallel, waits for all commands to terminate 139 and returns their status. If specified, the ouput of commands can be 143 commands: the list of commands to run, each as a list of one or more 159 command_num = len(commands) 164 for command in commands: 176 command = commands[i]
|
/external/chromium_org/win8/metro_driver/ |
metro_dialog_box.cc | 53 mswr::ComPtr<WindowsUICommands> commands; local 54 hr = dialog_box_->get_Commands(commands.GetAddressOf()); 79 commands->Append(label1_command.Get()); 80 commands->Append(label2_command.Get());
|