Searched defs:command (Results 1 - 25 of 234) sorted by relevance

12345678910

/external/webkit/LayoutTests/http/tests/appcache/resources/
H A Dfail-on-update-2.php19 $command = $_GET['command']; variable
26 if ($command == "reset") {
28 } else if ($command == "delete") {
35 print("fail-on-update.php?command=\n");
H A Dfail-on-update.php19 $command = $_GET['command']; variable
26 if ($command == "reset") {
28 } else if ($command == "delete") {
34 print("fail-on-update.php?command=\n");
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebEditCommand.cpp37 PassRefPtr<WebEditCommand> WebEditCommand::create(PassRefPtr<WebCore::EditCommand> command) argument
39 return adoptRef(new WebEditCommand(command, generateCommandID()));
H A DWebEditCommand.h39 WebCore::EditCommand* command() const { return m_command.get(); } function in class:WebKit::WebEditCommand
43 WebEditCommand(PassRefPtr<WebCore::EditCommand> command, uint64_t commandID) argument
44 : m_command(command)
/external/clang/test/CodeGen/
H A Dpragma-pack-3.c2 // CHECK-X32: %union.command = type <{ i8*, [2 x i8] }>
5 // CHECK-X64: %union.command = type <{ i8*, [2 x i8] }>
9 typedef union command { union
15 } command; typedef in typeref:union:command
17 command c;
/external/kernel-headers/original/asm-x86/
H A Dist.h24 __u32 command; member in struct:ist_info
/external/webkit/LayoutTests/http/tests/resources/
H A Dtripmine.php29 $command = $_GET['command']; variable
30 if ($command) {
31 if ($command == "status")
/external/webkit/Source/WebCore/editing/
H A DCompositeEditCommand.h44 bool isFirstCommand(EditCommand* command) { return !m_commands.isEmpty() && m_commands.first() == command; } argument
/external/chromium/chrome/browser/chromeos/
H A Dname_value_pairs_parser_unittest.cc15 const char* command[] = { "echo", "Foo" }; local
16 EXPECT_TRUE(parser.GetSingleValueFromTool(arraysize(command), command,
/external/chromium/chrome/browser/sync/engine/
H A Dcleanup_disabled_types_command_unittest.cc46 CleanupDisabledTypesCommand command; local
50 command.ExecuteImpl(session());
54 CleanupDisabledTypesCommand command; local
60 command.ExecuteImpl(session());
63 command.ExecuteImpl(session());
67 CleanupDisabledTypesCommand command; local
82 command.ExecuteImpl(session());
/external/chromium/chrome/browser/tab_contents/
H A Dview_source_uitest.cc23 bool IsMenuCommandEnabled(int command) { argument
30 EXPECT_TRUE(window_proxy->IsMenuCommandEnabled(command, &enabled));
/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;
/external/smali/util/src/main/java/org/jf/util/
H A DConsoleUtil.java84 private static String attemptCommand(String[] command) { argument
89 Process p = Runtime.getRuntime().exec(command);
/external/webkit/Source/WebKit/chromium/src/
H A DDebuggerAgentImpl.cpp60 void DebuggerAgentImpl::debuggerOutput(const String& command) argument
62 m_webdevtoolsAgentClient->sendDebuggerOutput(command);
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditCommandWx.h42 EditCommandWx(WTF::PassRefPtr<WebCore::EditCommand> command) argument
44 m_editCommand = command;
/external/chromium/chrome/browser/
H A Dprocess_info_snapshot.h45 // mostly self-explanatory). Note that |command| may not actually reflect the
59 std::string command; member in struct:ProcessInfoSnapshot::ProcInfoEntry
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPacketSessionExecCommand.java22 public String command; field in class:PacketSessionExecCommand
24 public PacketSessionExecCommand(int recipientChannelID, boolean wantReply, String command) argument
28 this.command = command;
45 tw.writeString(command, charsetName);
/external/kernel-headers/original/linux/usb/
H A Df_mtp.h28 /* MTP command code */
29 uint16_t command; member in struct:mtp_data_header
43 /* MTP command ID for data header,
46 uint16_t command; member in struct:mtp_file_range
/external/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)
/external/webkit/Source/WebKit/chromium/public/
H A DWebDevToolsFrontendClient.h45 virtual void sendDebuggerCommandToAgent(const WebString& command) { } argument
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
H A DWebEditorClientGtk.cpp39 // First try to interpret the command in the UI and get the commands.
49 Editor::Command command = frame->editor()->command(pendingEditorCommands.at(i).utf8().data()); local
50 if (command.isTextInsertion() && !allowTextInsertion)
53 commands.append(command);
79 // During RawKeyDown events if an editor command will insert text, defer
/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/chrome/browser/sessions/
H A Dsession_backend_unittest.cc22 SessionCommand* command = local
27 memcpy(command->contents(), data.data.c_str(), data.data.size());
28 return command;
41 void AssertCommandEqualsData(const TestData& data, SessionCommand* command) { argument
42 EXPECT_EQ(data.command_id, command->id());
43 EXPECT_EQ(data.data.size(), command->size());
45 memcmp(command->contents(), data.data.c_str(), command->size()) == 0);
176 // Writes a command, appends another command wit
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dreload_button.cc82 int command; local
85 command = IDC_RELOAD_IGNORING_CACHE;
89 command = IDC_RELOAD;
105 // browser to execute the reload command).
110 browser_->ExecuteCommandWithDisposition(command, disposition);
/external/openssh/
H A Daudit-linux.c80 audit_run_command(const char *command) argument

Completed in 663 milliseconds

12345678910