Searched refs:command (Results 451 - 475 of 1145) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/net/test/spawned_test_server/
H A Dspawner_communicator.cc27 GURL GenerateSpawnerCommandURL(const std::string& command, uint16 port) { argument
28 // Always performs HTTP request for sending command to the spawner server.
30 command.c_str()));
35 // A class to hold all data needed to send a command to spawner server.
93 // sending a command to spawner server.
144 const std::string& command,
159 base::Unretained(this), command, post_data, result_code, data_received));
164 const std::string& command,
172 // Prepare the URLRequest for sending the command.
176 GenerateSpawnerCommandURL(command, port
143 SendCommandAndWaitForResult( const std::string& command, const std::string& post_data, int* result_code, std::string* data_received) argument
163 SendCommandAndWaitForResultOnIOThread( const std::string& command, const std::string& post_data, int* result_code, std::string* data_received) argument
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
H A Dgit.py229 command = [self.executable_name, 'diff', '--binary', '--no-color', "--no-ext-diff", "--full-index", "--no-renames", order, self._merge_base(git_commit), "--"]
231 command += changed_files
232 return self._prepend_svn_revision(self._run(command, decode_output=False, cwd=self.checkout_root))
277 command = ['commit', '-F', '-']
279 command.insert(1, '--all')
280 self._run_git(command, input=message)
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Declipse.py94 command = shlex.split(compiler_path)
95 command.extend(['-E', '-xc++', '-v', '-'])
96 proc = subprocess.Popen(args=command, stdin=subprocess.PIPE,
169 """Determine a command that can be used to invoke the compiler.
231 command = shlex.split(compiler_path)
232 command.extend(['-E', '-dM', '-'])
233 cpp_proc = subprocess.Popen(args=command, cwd='.',
/external/chromium_org/build/android/pylib/
H A Dports.py132 def IsHttpServerConnectable(host, port, tries=3, command='GET', path='/',
141 command: The http command we use to connect to HTTP server. The default
142 command is 'GET'.
162 http.request(command, path)
/external/chromium_org/chrome/browser/extensions/
H A Dextension_keybinding_registry.h64 // Execute the command bound to |accelerator| and provided by the extension
74 // |command_name| is optional, but if not blank then only the command
80 // but if not blank then only the command specified will be removed.
93 // Whether to ignore this command. Only browserAction commands and pageAction
95 bool ShouldIgnoreCommand(const std::string& command) const;
101 // Notifies appropriate parties that a command has been executed.
103 const std::string& command);
105 // Add event target (extension_id, command name) to the target list of
146 // the corresponding extension. Returns true if at least one command was
162 // Maps an accelerator to a list of string pairs (extension id, command nam
[all...]
/external/chromium_org/chrome/browser/media/
H A Dencrypted_media_istypesupported_browsertest.cc199 // Update the command line to load |adapter_name| for
242 std::string command(
244 command.append(key);
245 command.append("'));");
254 command,
263 std::string command("document.createElement('video').canPlayType(");
266 command.append("null");
269 command.append("'");
270 command.append(type);
272 command
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
H A Dprefs.js38 * The current mapping from keys to command.
150 * Get the key map, from key binding to an array of [command, description].
220 * @param {string} command The command to set.
222 * @return {boolean} True if the key was bound to the command.
224 cvox.ChromeVoxPrefs.prototype.setKey = function(command, newKey) {
225 if (this.keyMap_.rebind(command, newKey)) {
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
H A Dchromevox_unittest_base.js202 * Executes a ChromeVox user command.
203 * @param {string} command The name of the command to run.
206 userCommand: function(command) {
207 cvox.ChromeVoxUserCommands.commands[command]();
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dbrowser_bridge.js281 receive: function(command, params) {
288 if (Constants == null && command != 'receivedConstants') {
289 this.earlyReceivedData_.push({ command: command, params: params });
293 this[command](params);
299 var command = this.earlyReceivedData_[i];
300 this[command.command](command.params);
/external/chromium_org/content/browser/resources/service_worker/
H A Dserviceworker_internals.js46 function commandHandler(command) {
50 sendCommand(command, link.cmdArgs, (function(status) {
58 function sendCommand(command, args, callback) {
64 chrome.send(command, [callbackId, args]);
67 // Fired from the backend after the command call has completed.
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DInterstitialPageTest.java95 "function sendCommand(command) {" +
97 "window.domAutomationController.send(command);" +
109 protected void commandReceived(String command) {
110 assertEquals(command, proceedCommand);
/external/chromium_org/gpu/command_buffer/service/
H A Dmocks.h60 unsigned int command,
78 void SetToken(unsigned int command,
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DExecutorFactory.java80 * Asynchronously wait for the next command to arrive. This should only be called on the
149 * Execute the given |command| in the executor thread. This can be called on any thread.
154 public void execute(Runnable command) { argument
162 mPendingActions.add(command);
/external/chromium_org/sandbox/win/tests/common/
H A Dcontroller.h95 // Starts a child process in the sandbox and ask it to run |command|. Returns
97 int RunTest(const wchar_t* command);
99 // Sets the timeout value for the child to run the command and return.
134 int InternalRunTest(const wchar_t* command);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathParser.cpp300 SVGPathSegType command;
301 m_source->parseSVGSegmentType(command);
305 if (checkForInitialMoveTo && command != PathSegMoveToAbs && command != PathSegMoveToRel)
309 // Skip spaces between command and first coordinate.
312 switch (command) {
376 m_lastCommand = command;
381 command = m_source->nextCommand(command);
/external/chromium_org/third_party/libsrtp/srtp/
H A Dinstall-win.bat2 :: command line
/external/chromium_org/tools/emacs/
H A Dtrybot.el114 (command (concat "curl -s " (shell-quote-argument url)
127 (process (start-process-shell-command "curl" buffer command)))
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingExecutorService.java100 public void execute(Runnable command) { argument
101 delegate().execute(command);
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAbstractScheduledServiceTest.java53 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay,
55 return future = super.scheduleWithFixedDelay(command, initialDelay, delay, unit);
242 private void assertSingleCallWithCorrectParameters(Runnable command, long initialDelay, argument
249 assertEquals(testRunnable, command);
256 public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay,
258 assertSingleCallWithCorrectParameters(command, initialDelay, delay, unit);
269 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay,
271 assertSingleCallWithCorrectParameters(command, initialDelay, delay, unit);
/external/iptables/iptables/
H A Dip6tables.c1 /* Code to take an ip6tables-style command line and do it. */
265 " --modprobe=<command> try to insert modules using this command\n"
294 generic_opt_check(int command, int options) argument
299 * fact that if an option is legal with *any* command given, it is
306 if (!(command & (1<<j)))
313 "option for this command\n",
324 "Illegal option `-%c' with this command\n",
1303 unsigned int rulenum = 0, command = 0; local
1342 add_command(&command, CMD_APPEN
[all...]
H A Diptables.c1 /* Code to take an iptables-style command line and do it. */
259 " --modprobe=<command> try to insert modules using this command\n"
288 generic_opt_check(int command, int options) argument
293 * fact that if an option is legal with *any* command given, it is
300 if (!(command & (1<<j)))
307 "option for this command\n",
318 "Illegal option `-%c' with this command\n",
1299 unsigned int rulenum = 0, command = 0; local
1338 add_command(&command, CMD_APPEN
[all...]
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DMainUtil.java29 String command = args[0];
33 if (method.getName().equals(command)) {
/external/lldb/source/Commands/
H A DCommandObjectFrame.cpp79 DoExecute (Args& command, CommandReturnObject &result) argument
191 DoExecute (Args& command, CommandReturnObject &result) argument
244 if (command.GetArgumentCount() == 1)
246 const char *frame_idx_cstr = command.GetArgumentAtIndex(0);
249 else if (command.GetArgumentCount() == 0)
377 DoExecute (Args& command, CommandReturnObject &result) argument
410 if (command.GetArgumentCount() > 0)
414 // If we have any args to the variable command, we will make
416 for (idx = 0; (name_cstr = command.GetArgumentAtIndex(idx)) != NULL; ++idx)
511 else // No command ar
[all...]
H A DCommandObjectWatchpointCommand.cpp52 This command will cause you to be prompted to enter the command or set \n\
54 hit. You will be told to enter your command(s), and will see a '> ' \n\
62 entered. An improperly written watchpoint command will attempt to get \n\
64 your watchpoint command does not appear to be getting executed, go \n\
76 you finish entering the watchpoint command, and they can be called \n\
99 Example Python one-line watchpoint command: \n\
101 (lldb) watchpoint command add -s python 1 \n\
102 Enter your Python command(s). Type 'DONE' to end. \n\
107 (lldb) watchpoint command ad
486 DoExecute(Args& command, CommandReturnObject &result) argument
652 DoExecute(Args& command, CommandReturnObject &result) argument
743 DoExecute(Args& command, CommandReturnObject &result) argument
[all...]
/external/lldb/test/functionalities/exec/
H A DTestExec.py2 Test some lldb command abbreviations.
12 def execute_command (command):
13 #print '%% %s' % (command)
14 (exit_status, output) = commands.getstatusoutput (command)

Completed in 651 milliseconds

<<11121314151617181920>>