Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 1291) sorted by relevance

12345678910>>...52

/external/chromium/chrome/browser/resources/shared/js/cr/ui/
Dmenu_item.js35 this.command = commandId;
47 get command() { getter in MenuItem
50 set command(command) { argument
58 if (typeof command == 'string' && command[0] == '#') {
59 command = this.ownerDocument.getElementById(command.slice(1));
60 cr.ui.decorate(command, Command);
63 this.command_ = command;
64 if (command) {
65 if (command.id)
66 this.setAttribute('command', '#' + command.id);
[all …]
Dcommand.js94 e.command = this;
185 function dispatchCanExecuteEvent(command, target) { argument
186 var e = new CanExecuteEvent(command, true)
188 command.disabled = !e.canExecute;
232 commands.forEach(function(command) { argument
233 dispatchCanExecuteEvent(command, target);
246 for (var i = 0, command; command = commands[i]; i++) {
247 if (!command.disabled && command.matchesEvent(e)) {
252 command.execute();
264 function CanExecuteEvent(command) { argument
[all …]
/external/chromium-trace/src/shared/js/cr/ui/
Dmenu_item.js35 this.command = commandId;
51 get command() { getter in MenuItem
54 set command(command) { argument
62 if (typeof command == 'string' && command[0] == '#') {
63 command = this.ownerDocument.getElementById(command.slice(1));
64 cr.ui.decorate(command, Command);
67 this.command_ = command;
68 if (command) {
69 if (command.id)
70 this.setAttribute('command', '#' + command.id);
[all …]
Dcommand.js94 e.command = this;
185 function dispatchCanExecuteEvent(command, target) { argument
186 var e = new CanExecuteEvent(command, true);
188 command.disabled = !e.canExecute;
232 commands.forEach(function(command) { argument
233 dispatchCanExecuteEvent(command, target);
246 for (var i = 0, command; command = commands[i]; i++) {
247 if (!command.disabled && command.matchesEvent(e)) {
252 command.execute();
264 function CanExecuteEvent(command) { argument
[all …]
/external/webkit/Tools/Scripts/webkitpy/common/config/
Dports.py102 command = cls.script_shell_command("build-webkit")
104 command.append("--debug")
106 command.append("--release")
107 return command
175 command = WebKitPort.build_webkit_command(build_style=build_style)
176 command.append("--gtk")
177 command.append(WebKitPort.makeArgs())
178 return command
182 command = WebKitPort.run_webkit_tests_command()
183 command.append("--gtk")
[all …]
/external/webkit/Tools/DumpRenderTree/qt/
DTextInputControllerQt.cpp42 void TextInputController::doCommand(const QString& command) in doCommand() argument
46 if (command == "moveBackwardAndModifySelection:") { in doCommand()
49 } else if (command =="moveDown:") { in doCommand()
51 } else if (command =="moveDownAndModifySelection:") { in doCommand()
54 } else if (command =="moveForward:") { in doCommand()
56 } else if (command =="moveForwardAndModifySelection:") { in doCommand()
59 } else if (command =="moveLeft:") { in doCommand()
61 } else if (command =="moveLeftAndModifySelection:") { in doCommand()
64 } else if (command =="moveRight:") { in doCommand()
66 } else if (command =="moveRightAndModifySelection:") { in doCommand()
[all …]
/external/chromium/chrome/browser/ui/cocoa/applescript/
Dtab_applescript.h48 - (void)handlesUndoScriptCommand:(NSScriptCommand*)command;
49 - (void)handlesRedoScriptCommand:(NSScriptCommand*)command;
52 - (void)handlesCutScriptCommand:(NSScriptCommand*)command;
53 - (void)handlesCopyScriptCommand:(NSScriptCommand*)command;
54 - (void)handlesPasteScriptCommand:(NSScriptCommand*)command;
57 - (void)handlesSelectAllScriptCommand:(NSScriptCommand*)command;
60 - (void)handlesGoBackScriptCommand:(NSScriptCommand*)command;
61 - (void)handlesGoForwardScriptCommand:(NSScriptCommand*)command;
62 - (void)handlesReloadScriptCommand:(NSScriptCommand*)command;
63 - (void)handlesStopScriptCommand:(NSScriptCommand*)command;
[all …]
/external/valgrind/main/gdbserver_tests/
DmcinvokeRU.stderrB.exp1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ....
[all …]
DmcinvokeWS.stderrB.exp1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ....
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
Djsilver.sablecc63 command, // ClearSilver command: "<?cs var:".
64 args, // Args to command: "some.variable=3 ?>"
86 {command} var = 'var';
87 {command} lvar = 'lvar';
88 {command} evar = 'evar';
89 {command} uvar = 'uvar';
90 {command} set = 'set';
91 {command} if = 'if';
92 {command} else_if = ('elif' | 'elseif');
93 {command} else = 'else';
[all …]
/external/chromium/chrome/browser/
Dcommand_updater.cc33 const CommandMap::const_iterator command(commands_.find(id)); in IsCommandEnabled() local
34 if (command == commands_.end()) in IsCommandEnabled()
36 return command->second->enabled; in IsCommandEnabled()
52 Command* command = GetCommand(id, true); in UpdateCommandEnabled() local
53 if (command->enabled == enabled) in UpdateCommandEnabled()
55 command->enabled = enabled; in UpdateCommandEnabled()
56 FOR_EACH_OBSERVER(CommandObserver, command->observers, in UpdateCommandEnabled()
65 Command* command = new Command; in GetCommand() local
66 commands_[id] = command; in GetCommand()
67 return command; in GetCommand()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/
Dwpa_priv.sgml16 <command>wpa_priv</command>
27 <para><command>wpa_priv</command> is a privilege separation helper that
28 minimizes the size of <command>wpa_supplicant</command> code that needs
39 <para><command>wpa_priv</command> needs to be run with network admin
41 interface that is included on the command line; any other interface will
42 be off limits for <command>wpa_supplicant</command> in this kind of
43 configuration. After this, <command>wpa_supplicant</command> can be run as
52 <command>wpa_priv</command> to allow users in the
54 <command>wpa_supplicant</command> with privilege separation:</para>
69 <para>Start <command>wpa_priv</command> as root (e.g., from system
[all …]
/external/oprofile/opcontrol/
Dopcontrol.cpp735 char command[1024]; in main() local
738 strcpy(command, argv[0]); in main()
739 char* slash = strrchr(command, '/'); in main()
740 strcpy(slash ? slash + 1 : command, "oprofiled --session-dir="OP_DATA_DIR); in main()
785 snprintf(command + strlen(command), sizeof(command) - strlen(command), in main()
788 snprintf(command + strlen(command), sizeof(command) - strlen(command), ","); in main()
793 snprintf(command + strlen(command), sizeof(command) - strlen(command), in main()
823 snprintf(command + strlen(command), sizeof(command) - strlen(command), in main()
827 snprintf(command + strlen(command), sizeof(command) - strlen(command), in main()
830 snprintf(command + strlen(command), sizeof(command) - strlen(command), in main()
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DProcessBuilderTest.java45 assertEquals(1, pb.command().size()); in testCommand()
46 assertEquals("command", pb.command().get(0)); in testCommand()
50 pb.command("BBB","CCC"); in testCommand()
51 List<String> list = pb.command(); in testCommand()
53 String[] command = new String[3]; in testCommand() local
54 list.toArray(command); in testCommand()
55 assertTrue(Arrays.equals(new String[]{"BBB","CCC","DDD"}, command)); in testCommand()
60 ProcessBuilder pbReturn = pb.command("cmd"); in testCommandStringArray()
62 assertEquals(1, pb.command().size()); in testCommandStringArray()
63 assertEquals("cmd", pb.command().get(0)); in testCommandStringArray()
[all …]
/external/webkit/Tools/Scripts/webkitpy/tool/
Dmulticommandtool.py186 longest_name_length = max(map(lambda command: len(command.name), relevant_commands))
188 …command_help_texts = map(lambda command: " %s %s\n" % (command.name.ljust(longest_name_length)…
201 command = self._tool.command_by_name(args[0])
202 if command:
203 print command.standalone_help()
224 for command in self.commands:
225 command.bind_to_tool(self)
258 command = args[command_index]
259 return (command, args[:command_index] + args[command_index + 1:])
262 for command in self.commands:
[all …]
/external/webkit/LayoutTests/http/tests/resources/
Dnetwork-simulator.php159 $command = $_GET['command']; variable
160 if ($command) {
161 if ($command == "connect")
163 else if ($command == "disconnect")
165 else if ($command == "increase-resource-count")
167 else if ($command == "reset-resource-count")
169 else if ($command == "get-resource-count")
171 else if ($command == "start-resource-request-log")
173 else if ($command == "clear-resource-request-log")
175 else if ($command == "get-resource-request-log")
[all …]
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
DEditorClientHaiku.cpp294 frame->editor()->command("MoveUpByPageAndModifyCaret"); in handleKeyboardEvent()
297 frame->editor()->command("MoveDownByPageAndModifyCaret"); in handleKeyboardEvent()
300 frame->editor()->command("InsertLineBreak"); in handleKeyboardEvent()
316 frame->editor()->command("SelectAll"); in handleKeyboardEvent()
319 frame->editor()->command("ToggleBold"); in handleKeyboardEvent()
322 frame->editor()->command("Copy"); in handleKeyboardEvent()
325 frame->editor()->command("ToggleItalic"); in handleKeyboardEvent()
328 frame->editor()->command("Paste"); in handleKeyboardEvent()
331 frame->editor()->command("Cut"); in handleKeyboardEvent()
334 frame->editor()->command("Redo"); in handleKeyboardEvent()
[all …]
/external/dbus/tools/
Ddbus-launch-win.c88 wchar_t command[MAX_PATH * 2 + 1]; in main() local
128 wcscpy_s (command, sizeof (command), L"--session"); in main()
130 fprintf (stderr, "%ls %ls\n", dbusDaemonPath, command); in main()
132 command[0] = L'\0'; in main()
134 wcscpy_s (command, sizeof (command), dbusDaemonPath); in main()
135 wcscat_s (command, sizeof (command), L" --session"); in main()
137 fprintf (stderr, "%ls\n", command); in main()
155 result = CreateProcessW (dbusDaemonPath, command, 0, 0, in main()
/external/chromium/chrome/browser/ui/webui/options/
Dadvanced_options_utils_gtk.cc77 const ProxyConfigCommand& command) { in StartProxyConfigUtil() argument
80 argv.push_back(command.binary); in StartProxyConfigUtil()
81 for (size_t i = 1; command.argv[i]; i++) in StartProxyConfigUtil()
82 argv.push_back(command.argv[i]); in StartProxyConfigUtil()
86 LOG(ERROR) << "StartProxyConfigUtil failed to start " << command.binary; in StartProxyConfigUtil()
100 ProxyConfigCommand command; in DetectAndStartProxyConfigUtil() local
110 command = commands[index]; in DetectAndStartProxyConfigUtil()
115 command.argv = kKDE3ProxyConfigCommand; in DetectAndStartProxyConfigUtil()
116 found_command = SearchPATH(&command, 1, NULL); in DetectAndStartProxyConfigUtil()
120 command.argv = kKDE4ProxyConfigCommand; in DetectAndStartProxyConfigUtil()
[all …]
/external/quake/quake/src/WinQuake/
Dcd_linux.cpp212 char *command; in CD_f() local
219 command = Cmd_Argv (1); in CD_f()
221 if (Q_strcasecmp(command, "on") == 0) in CD_f()
227 if (Q_strcasecmp(command, "off") == 0) in CD_f()
235 if (Q_strcasecmp(command, "reset") == 0) in CD_f()
246 if (Q_strcasecmp(command, "remap") == 0) in CD_f()
261 if (Q_strcasecmp(command, "close") == 0) in CD_f()
277 if (Q_strcasecmp(command, "play") == 0) in CD_f()
283 if (Q_strcasecmp(command, "loop") == 0) in CD_f()
289 if (Q_strcasecmp(command, "stop") == 0) in CD_f()
[all …]
/external/quake/quake/src/QW/client/
Dcd_linux.c212 char *command; in CD_f() local
219 command = Cmd_Argv (1); in CD_f()
221 if (Q_strcasecmp(command, "on") == 0) in CD_f()
227 if (Q_strcasecmp(command, "off") == 0) in CD_f()
235 if (Q_strcasecmp(command, "reset") == 0) in CD_f()
246 if (Q_strcasecmp(command, "remap") == 0) in CD_f()
261 if (Q_strcasecmp(command, "close") == 0) in CD_f()
277 if (Q_strcasecmp(command, "play") == 0) in CD_f()
283 if (Q_strcasecmp(command, "loop") == 0) in CD_f()
289 if (Q_strcasecmp(command, "stop") == 0) in CD_f()
[all …]
/external/expat/doc/
Dxmlwf.sgml56 <command>&dhpackage;</command>
82 <command>&dhpackage;</command> uses the Expat library to
88 If you do not specify any files on the command-line, and you
89 have a recent version of <command>&dhpackage;</command>, the
108 <command>&dhpackage;</command> does not currently
133 <command>&dhpackage;</command> is a non-validating parser --
145 option ("<option>-d</option>output"). <command>&dhpackage;</command>
155 If the input file is well-formed and <command>&dhpackage;</command>
180 file. Otherwise, <command>&dhpackage;</command> will delete the
200 any document encoding declaration. <command>&dhpackage;</command>
[all …]
/external/chromium/chrome/browser/sessions/
Dsession_service.cc319 SessionCommand* command = in TabNavigationPathPrunedFromBack() local
322 memcpy(command->contents(), &payload, sizeof(payload)); in TabNavigationPathPrunedFromBack()
323 ScheduleCommand(command); in TabNavigationPathPrunedFromBack()
344 SessionCommand* command = in TabNavigationPathPrunedFromFront() local
347 memcpy(command->contents(), &payload, sizeof(payload)); in TabNavigationPathPrunedFromFront()
348 ScheduleCommand(command); in TabNavigationPathPrunedFromFront()
627 SessionCommand* command = new SessionCommand(kCommandSetSelectedTabInIndex, in CreateSetSelectedTabInWindow() local
629 memcpy(command->contents(), &payload, sizeof(payload)); in CreateSetSelectedTabInWindow()
630 return command; in CreateSetSelectedTabInWindow()
637 SessionCommand* command = in CreateSetTabWindowCommand() local
[all …]
/external/webkit/Source/WebCore/inspector/front-end/
DExtensionAPI.js53 extensionServer.sendRequest({ command: "subscribe", type: this._type }); property
69 extensionServer.sendRequest({ command: "unsubscribe", type: this._type }); property
101 extensionServer.sendRequest({ command: "log", message: message }); property
129 return extensionServer.sendRequest({ command: "getHAR" }, callback && callbackWrapper); property
134 …return extensionServer.sendRequest({ command: "addRequestHeaders", headers: headers, extensionId: … property
150 …extensionServer.sendRequest({ command: "getResourceContent", id: this._id }, callback && callbackW… property
173 command: "createPanel", property
200 command: "createSidebarPane", property
237 extensionServer.sendRequest({ command: "setSidebarHeight", id: this._id, height: height }); property
242 …extensionServer.sendRequest({ command: "setSidebarContent", id: this._id, expression: expression, … property
[all …]
/external/tcpdump/
Dprint-ipx.c135 int command, i; in ipx_sap_print() local
138 command = EXTRACT_16BITS(ipx); in ipx_sap_print()
142 switch (command) { in ipx_sap_print()
145 if (command == 1) in ipx_sap_print()
156 if (command == 2) in ipx_sap_print()
176 (void)printf("ipx-sap-?%x", command); in ipx_sap_print()
187 int command, i; in ipx_rip_print() local
190 command = EXTRACT_16BITS(ipx); in ipx_rip_print()
194 switch (command) { in ipx_rip_print()
215 (void)printf("ipx-rip-?%x", command); in ipx_rip_print()

12345678910>>...52