Searched refs:command (Results 176 - 200 of 1145) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-94873.js33 // Get the debug command processor in paused state.
49 command: "frame"
55 command: "evaluate",
/external/chromium_org/v8/tools/
H A Drun-valgrind.py44 # Compute the command line.
45 command = VALGRIND_ARGUMENTS + sys.argv[1:] variable
48 process = subprocess.Popen(command, stderr=subprocess.PIPE)
H A Ddisasm.py64 command = "dd if=%s of=%s bs=1 count=%d skip=%d && " \
70 command = "%s %s %s --start-address=%d --stop-address=%d -d %s " % (
75 process = subprocess.Popen(command,
/external/doclava/src/com/google/doclava/
H A DAttrTagInfo.java60 String command = m.group(1);
63 if (REF_COMMAND.equals(command)) {
74 mCommand = command;
76 } else if (NAME_COMMAND.equals(command)) {
82 mCommand = command;
84 } else if (DESCRIPTION_COMMAND.equals(command)) {
85 mCommand = command;
88 Errors.error(Errors.BAD_ATTR_TAG, position, "Bad @attr command: " + command);
/external/emma/core/java12/
H A Demma.java39 final Command command = Command.create (commandName, "emma ".concat (commandName), commandArgs);
40 command.run ();
53 "emma usage: emma <command> [command options]," + EOL +
54 " where <command> is one of:" + EOL +
61 " {use '<command> -h' to see usage help for a given command}" + EOL +
/external/lldb/include/lldb/Interpreter/
H A DCommandObjectRegexCommand.h62 DoExecute (const char *command, CommandReturnObject &result);
67 std::string command; member in struct:lldb_private::CommandObjectRegexCommand::Entry
/external/lldb/test/pexpect-2.4/examples/
H A Dsshls.py12 def ssh_command (user, host, password, command):
14 """This runs a command on the remote host. This could also be done with the
21 child = pexpect.spawn('ssh -l %s %s %s'%(user, host, command))
/external/llvm/utils/count/
H A DAndroid.mk7 # count command line tool
/external/qemu/distrib/sdl-1.2.15/src/audio/nds/
H A Dsound9.c52 void SendCommandToArm7(u32 command) argument
60 REG_IPC_FIFO_TX = command;
H A Dsoundcommon.h68 extern void SendCommandToArm7(u32 command);
74 extern void SendCommandToArm9(u32 command);
/external/skia/tools/pyutils/
H A Dgs_utils.py57 # The GCS command relies on the subdir name (if any) ending with a slash.
63 command = storage.objects().list(
66 results = command.execute()
68 # The GCS command returned two subdicts:
/external/valgrind/main/gdbserver_tests/
H A Dnlsigvgdb.stderrB.exp5 monitor command request to kill this process
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DVmMirror.java52 * of corresponding JDWP command or TestErrorException if any other error
105 * @return ReplyPacket for corresponding command
120 * @return ReplyPacket for corresponding command
143 * @return ReplyPacket for corresponding command
157 * @return ReplyPacket for corresponding command
185 * @return ReplyPacket for corresponding command
310 * @return ReplyPacket for corresponding command
314 // Create new command packet
317 // Set command. "2" - is ID of Clear command i
1852 performCommand(CommandPacket command) argument
1879 performCommand(CommandPacket command, long timeout) argument
1900 sendCommand(CommandPacket command) argument
[all...]
/external/chromium_org/chrome/common/extensions/
H A Dcommand_unittest.cc5 #include "chrome/common/extensions/command.h"
25 // Checks the |suggested_key| value parses into a command when specified as a
38 extensions::Command command; local
47 bool result = command.Parse(input.get(), data.command_name, i, &error);
51 base::UTF16ToASCII(command.description()).c_str());
52 EXPECT_STREQ(data.command_name, command.command_name().c_str());
53 EXPECT_EQ(data.accelerator, command.accelerator());
78 bool result = command.Parse(input.get(), data.command_name, i, &error);
83 base::UTF16ToASCII(command.description()).c_str());
84 EXPECT_STREQ(data.command_name, command
214 extensions::Command command; local
[all...]
/external/chromium_org/chrome/browser/chromeos/power/
H A Dfreezer_cgroup_process_manager.h26 bool WriteCommandToStateFile(const std::string& command);
/external/chromium_org/chrome/browser/ui/login/
H A Dlogin_interstitial_delegate.cc24 void LoginInterstitialDelegate::CommandReceived(const std::string& command) { argument
32 // command from the interstitial page as soon as it is loaded.
/external/chromium_org/content/public/browser/
H A Dinterstitial_page_delegate.h32 // Invoked when the page sent a command through DOMAutomation.
33 virtual void CommandReceived(const std::string& command) {} argument
/external/chromium_org/ui/aura/test/
H A Dui_controls_factory_aurawin.cc38 bool command) {
39 DCHECK(!command); // No command key on Aura
50 bool command,
52 DCHECK(!command); // No command key on Aura
33 SendKeyPress(gfx::NativeWindow native_window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
45 SendKeyPressNotifyWhenDone(gfx::NativeWindow native_window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, const base::Closure& task) argument
/external/kernel-headers/original/uapi/linux/usb/
H A Df_mtp.h31 /* MTP command ID for data header,
34 uint16_t command; member in struct:mtp_file_range
/external/llvm/tools/llvm-link/
H A DAndroid.mk19 # llvm-link command line tool (host)
34 # llvm-link command line tool (target)
/external/smack/src/org/jivesoftware/smackx/commands/
H A DAdHocCommandManager.java112 * Map a command node with its AdHocCommandInfo. Note: Key=command node,
113 * Value=command. Command node matches the node attribute sent by command
120 * Map a command session ID with the instance LocalCommand. The LocalCommand
122 * the command execution. Note: Key=session ID, Value=LocalCommand. Session
123 * ID matches the sessionid attribute sent by command responders.
134 * Registers a new command with this command manager, which is related to a
135 * connection. The <tt>node</tt> is an unique identifier of that command fo
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/applescript/
H A Dwindow_applescript.h74 - (void)handlesCloseScriptCommand:(NSCloseCommand*)command;
83 - (void)handlesEnterPresentationMode:(NSScriptCommand*)command;
86 - (void)handlesExitPresentationMode:(NSScriptCommand*)command;
/external/chromium_org/content/browser/devtools/
H A Ddevtools_browser_target.cc52 scoped_refptr<DevToolsProtocol::Command> command = local
54 if (!command.get()) {
59 DomainHandlerMap::iterator it = handlers_.find(command->domain());
61 Respond(command->NoSuchMethodErrorResponse()->Serialize());
65 std::string domain = command->domain();
73 Respond(command->ServerErrorResponse(message)->Serialize());
82 handler->HandleCommand(command);
88 Respond(command->NoSuchMethodErrorResponse()->Serialize());
98 command));
146 scoped_refptr<DevToolsProtocol::Command> command) {
144 HandleCommandOnUIThread( DevToolsProtocol::Handler* handler, scoped_refptr<DevToolsProtocol::Command> command) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditCommand.h92 DEFINE_TYPE_CASTS(SimpleEditCommand, EditCommand, command, command->isSimpleEditCommand(), command.isSimpleEditCommand());
/external/chromium_org/tools/flakiness/
H A Dis_flaky_test.py26 def mock_check_call(self, command, stdout, stderr):
27 self.check_call_calls.append(command)
38 command = ['command', 'param1', 'param2'] variable in class:IsFlakyTest.mock_load_options.MockOptions
48 self.assertEqual(call, ['command', 'param1', 'param2'])

Completed in 1856 milliseconds

1234567891011>>