Searched refs:command (Results 401 - 425 of 1145) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.cc191 const std::string& command = GetWord(words, 0, ""); local
192 if (command == "quit") {
195 if (command == "accept") {
201 } else if (command == "reject") {
207 if (command == "hangup") {
209 } else if (command == "hold") {
212 } else if (command == "addsession") {
222 } else if (command == "rmsession") {
225 } else if (command == "calls") {
227 } else if ((words.size() == 2) && (command
[all...]
/external/lldb/utils/vim-lldb/python-vim-lldb/
H A Dlldb_controller.py78 """ Returns a list of viable completions for command a with length l and cursor at p """
104 """ Perform a step command and block the UI for eventDelayStep seconds in order to process
128 def doSelect(self, command, args):
131 return self.doCommand(command, args, "select" != a[0], True)
134 """ Handle 'process' command. If 'launch' is requested, use doLaunch() instead
135 of the command interpreter to start the inferior process.
197 """ Pass target command to interpreter, except if argument is not one of the valid options, or
231 """ Handle 'contiue' command.
242 """ Handle breakpoint command with command interprete
[all...]
/external/robolectric/lib/main/
H A Dh2-1.2.147.jar ... h2.table.TableBase createTable (org.h2.command.ddl.CreateTableData) } org/h2/api/Trigger.class ...
/external/chromium_org/tools/vim/
H A Dninja-build.vim6 " this command. On Windows, Ctrl-F7 (which is the same as the VS default).
10 " to any key by default, but can be used via the :CrBuild command.
65 """Returns the shell command to compile the file in the current buffer."""
78 vim.command('return "%s"' % build_cmd)
85 vim.command('return "%s"' % build_cmd)
118 command! CrCompileFile call CrCompileFile()
119 command! -nargs=* CrBuild call CrBuild(<q-args>)
/external/chromium_org/chrome/browser/sessions/
H A Dsession_backend.cc58 // Reads a single command, returning it. A return value of NULL indicates
102 for (SessionCommand* command = ReadCommand(); command && !errored_;
103 command = ReadCommand())
104 read_commands.push_back(command);
118 // Make sure there is enough in the buffer for the size of the next command.
124 // Still couldn't read a valid size for the command, assume write was
129 // Get the size of the command.
136 VLOG(1) << "SessionFileReader::ReadCommand, empty command";
137 // Empty command
154 SessionCommand* command = local
[all...]
/external/chromium_org/v8/tools/testrunner/local/
H A Dexecution.py40 def __init__(self, command, dep_command, test_id, timeout, verbose):
41 self.command = command
58 output = commands.Execute(job.command, job.verbose, job.timeout)
95 command = self.GetCommand(test)
102 dep_command = [ c.replace(test.path, test.dependency) for c in command ]
105 return Job(command, dep_command, test.id, timeout, self.context.verbose)
/external/lldb/source/Commands/
H A DCommandObjectExpression.cpp318 // after the command object DoExecute has finished when doing
417 const char *command,
425 if (command[0] == '\0')
458 if (command[0] == '-')
462 const char *s = command;
482 Args args (command, end_options - command);
497 expr = command;
415 DoExecute( const char *command, CommandReturnObject &result ) argument
H A DCommandObjectRegister.cpp173 DoExecute (Args& command, CommandReturnObject &result) argument
179 if (command.GetArgumentCount() == 0)
237 for (int arg_idx = 0; (arg_cstr = command.GetArgumentAtIndex(arg_idx)) != NULL; ++arg_idx)
340 // Instance variables to hold the values for command options.
413 DoExecute(Args& command, CommandReturnObject &result) argument
418 if (command.GetArgumentCount() != 2)
425 const char *reg_name = command.GetArgumentAtIndex(0);
426 const char *value_str = command.GetArgumentAtIndex(1);
H A DCommandObjectSettings.cpp65 at once by giving the values to the set command. For example: \n\
78 Warning: The 'set' command re-sets the entire array or dictionary. If you \n\
147 // Instance variables to hold the values for command options.
218 DoExecute (const char *command, CommandReturnObject &result) argument
220 Args cmd_args(command);
237 result.AppendError ("'settings set' command requires a valid variable name");
242 // Split the raw command into var_name and value pair.
243 llvm::StringRef raw_str(command);
262 // if we did not clear the command's exe_ctx first
554 DoExecute (const char *command, CommandReturnObjec argument
689 DoExecute(const char *command, CommandReturnObject &result) argument
810 DoExecute(const char *command, CommandReturnObject &result) argument
934 DoExecute(const char *command, CommandReturnObject &result) argument
1048 DoExecute(const char *command, CommandReturnObject &result) argument
1150 DoExecute(Args& command, CommandReturnObject &result) argument
[all...]
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaAlone.cs167 string command = (string)nonSwitchStrings[paramIndex++];
168 command = command.ToLower();
185 if (command == "b")
200 if (command == "e")
202 else if (command == "d")
321 else if (command == "d")
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A DVCSUtils.pm385 my $command = "svn info $escapedDir | grep Revision:";
386 $command = "LC_ALL=C $command" if !isWindows();
387 my $svnInfo = `$command`;
390 my $command = "git log --grep=\"git-svn-id: \" -n 1 | grep git-svn-id:";
391 $command = "LC_ALL=C $command" if !isWindows();
392 $command = "cd $dir && $command";
393 my $gitLog = `$command`;
[all...]
/external/chromium_org/build/android/pylib/
H A Dandroid_commands.py5 """Provides an interface to communicate with the device via the adb command.
50 # appear at the start of any line of a command's output.
202 """Gets a list of files from `ls` command output.
208 ls_output: A list of lines returned by an `ls -lR` command.
271 # TODO(frankf): We should look at the return code instead of the command
323 'command': None,
335 """Logs the adb shell command."""
623 # Query the sys.boot_completed flag with a basic command
662 def GetAndroidToolStatusAndOutput(self, command, lib_path=None, *args, **kw):
663 """Runs a native Android binary, wrapping the command a
[all...]
/external/chromium_org/chrome/browser/devtools/device/usb/
H A Dandroid_usb_device.cc154 AdbMessage::AdbMessage(uint32 command, argument
158 : command(command),
347 net::StreamSocket* AndroidUsbDevice::CreateSocket(const std::string& command) { argument
352 sockets_[socket_id] = new AndroidUsbSocket(this, socket_id, command,
357 void AndroidUsbDevice::Send(uint32 command, argument
361 scoped_refptr<AdbMessage> m = new AdbMessage(command, arg0, arg1, body);
380 header.push_back(message->command);
386 if (message->command == AdbMessage::kCommandAUTH &&
389 if (message->command
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Dbluetooth_options_handler.cc29 // |UpdateDeviceCallback| provides a command value of one of the following
288 std::string command;
289 args->GetString(kUpdateDeviceCommandIndex, &command);
291 if (command == kConnectCommand) {
338 } else if (command == kCancelCommand) {
342 } else if (command == kAcceptCommand) {
347 } else if (command == kRejectCommand) {
351 } else if (command == kDisconnectCommand) {
359 } else if (command == kForgetCommand) {
366 LOG(WARNING) << "Unknown updateBluetoothDevice command
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Exec.java59 * Exec command returns the exitCode, and stdOut and stdErr as strings
61 public static Object[] run(String command, List<String> args, String[] envp, argument
64 Object[] arr = exec(command, args, envp, displayOutput);
164 StringBuilder command;
210 private static Object[] exec(String command, List<String> args, argument
215 args.add(0, command);
219 // construct command line string and print it to stdout
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_protocol.cc48 base::DictionaryValue command; local
49 command.SetInteger(kIdParam, id_);
50 command.SetString(kMethodParam, method_);
52 command.Set(kParamsParam, params_->DeepCopy());
55 base::JSONWriter::Write(&command, &json_command);
/external/chromium_org/chrome/browser/extensions/
H A Dextension_keybinding_registry.cc11 #include "chrome/common/extensions/command.h"
91 const std::string& command) const {
92 return command == manifest_values::kPageActionCommandEvent ||
93 command == manifest_values::kBrowserActionCommandEvent;
102 const std::string& extension_id, const std::string& command) {
111 // the extension acts on the command. NOTE: The Global Commands handler does
120 args->Append(new base::StringValue(command));
101 CommandExecuted( const std::string& extension_id, const std::string& command) argument
/external/chromium_org/chrome/browser/safe_browsing/
H A Dprotocol_parser.cc292 base::StringPiece& command = pieces[0];
294 // Differentiate on the first character of the command (which is usually
296 switch (command[0]) {
302 if (list_name.empty() || (command != "ad" && command != "sd"))
305 chunk_delete.is_sub_del = command[0] == 's';
/external/chromium_org/chrome/installer/util/
H A Dgoogle_chrome_distribution.cc100 base::string16 command = iexplore.value() + L" " + GetUninstallSurveyUrl() + local
109 command += uninstall_metrics;
111 command += L"&";
112 command += distribution_data;
121 installer::WMIProcess::Launch(command, &pid);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositeEditCommand.h80 bool isFirstCommand(EditCommand* command) { return !m_commands.isEmpty() && m_commands.first() == command; } argument
179 DEFINE_TYPE_CASTS(CompositeEditCommand, EditCommand, command, command->isCompositeEditCommand(), command.isCompositeEditCommand());
/external/chromium_org/tools/clang/scripts/
H A Drun_tool.py60 command = subprocess.Popen(args, stdout=subprocess.PIPE)
61 output, _ = command.communicate()
116 command = subprocess.Popen((toolname, '-p', build_directory, filename),
119 stdout, stderr = command.communicate()
120 if command.returncode != 0:
/external/chromium_org/ui/aura/test/
H A Dui_controls_factory_aurax11.cc58 bool command) OVERRIDE {
60 window, key, control, shift, alt, command, base::Closure());
68 bool command,
78 if (command)
94 if (command)
H A Dui_controls_factory_ozone.cc27 bool command) OVERRIDE {
29 window, key, control, shift, alt, command, base::Closure());
37 bool command,
56 if (command) {
79 if (command) {
/external/chromium_org/win8/metro_driver/
H A Dsettings_handler.cc80 CheckHR(hr, "Failed to append new settings command");
85 CheckHR(hr, "Failed to append new help command");
90 CheckHR(hr, "Failed to append new about command");
107 mswr::ComPtr<winui::Popups::IUICommand> command; local
113 command.GetAddressOf());
114 CheckHR(hr, "Can't create settings command");
116 hr = settings_command_vector->Append(command.Get());
117 CheckHR(hr, "Failed to append settings command");
122 HRESULT SettingsHandler::OnSettings(winui::Popups::IUICommand* command) { argument
136 hr = command
[all...]
/external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/
H A DMain.java28 import io.airlift.command.Arguments;
29 import io.airlift.command.Command;
30 import io.airlift.command.HelpOption;
31 import io.airlift.command.Option;
32 import io.airlift.command.SingleCommand;
81 @Option(name = { "-X", "--request" }, description = "Specify request command to use")

Completed in 860 milliseconds

<<11121314151617181920>>