/external/libvorbis/vq/ |
D | make_residue_books.pl | 31 my $command=$line; 32 print ">>> $command"; 33 die "Couldn't shell command.\n\tcommand:$command\n" 34 if syst($command); 54 my $command="cp $datafile $bookname.tmp"; 55 print ">>> $command\n"; 56 die "Couldn't access partition data file.\n\tcommand:$command\n" 57 if syst($command); 59 my $command="huffbuild $bookname.tmp $interval"; 60 print ">>> $command\n"; [all …]
|
D | make_floor_books.pl | 26 my $command=$line; 27 print ">>> $command"; 28 die "Couldn't shell command.\n\tcommand:$command\n" 29 if syst($command); 40 $command="rm -f $globalname.vqh"; 41 die "Couldn't remove file.\n\tcommand:$command\n" 42 if syst($command); 62 $command="rm -f $datafile.tmp"; 63 print "\n\n>>> $command\n"; 64 die "Couldn't remove temp file.\n\tcommand:$command\n" [all …]
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/ |
D | menu_item.js | 35 this.command = commandId; 47 get command() { getter in MenuItem 50 set command(command) { setter in MenuItem 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 …]
|
D | command.js | 94 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/ |
D | ports.py | 102 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/ |
D | TextInputControllerQt.cpp | 42 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/ |
D | tab_applescript.h | 48 - (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/ |
D | mcinvokeWS.stderrB.exp | 1 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 …]
|
D | mcinvokeRU.stderrB.exp | 1 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/ |
D | jsilver.sablecc | 63 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/ |
D | command_updater.cc | 33 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/ |
D | wpa_priv.sgml | 16 <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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
D | ProcessBuilderTest.java | 45 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/ |
D | multicommandtool.py | 186 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/oprofile/opcontrol/ |
D | opcontrol.cpp | 672 char command[1024]; in main() local 675 strcpy(command, argv[0]); in main() 676 char* slash = strrchr(command, '/'); in main() 677 strcpy(slash ? slash + 1 : command, "oprofiled --session-dir="OP_DATA_DIR); in main() 720 snprintf(command + strlen(command), sizeof(command) - strlen(command), in main() 723 snprintf(command + strlen(command), sizeof(command) - strlen(command), ","); in main() 728 snprintf(command + strlen(command), sizeof(command) - strlen(command), in main() 758 snprintf(command + strlen(command), sizeof(command) - strlen(command), in main() 762 snprintf(command + strlen(command), sizeof(command) - strlen(command), in main() 765 snprintf(command + strlen(command), sizeof(command) - strlen(command), in main() [all …]
|
/external/webkit/LayoutTests/http/tests/resources/ |
D | network-simulator.php | 159 $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/ |
D | EditorClientHaiku.cpp | 294 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/smack/src/org/jivesoftware/smackx/commands/ |
D | AdHocCommandManager.java | 408 LocalCommand command = newInstanceOfCmd(commandNode, sessionId); in processAdHocCommand() local 411 command.setData(response); in processAdHocCommand() 416 if (!command.hasPermission(requestData.getFrom())) { in processAdHocCommand() 439 command.incrementStage(); in processAdHocCommand() 441 command.execute(); in processAdHocCommand() 443 if (command.isLastStage()) { in processAdHocCommand() 451 executingCommands.put(sessionId, command); in processAdHocCommand() 458 LocalCommand command = executingCommands.get(sessionId); in processAdHocCommand() 463 if (command != null) { in processAdHocCommand() 464 long creationStamp = command.getCreationDate(); in processAdHocCommand() [all …]
|
/external/clang/test/Sema/ |
D | warn-documentation.m | 5 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 8 // expected-warning@+2 {{empty paragraph passed to '\brief' command}} 22 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 26 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 31 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 36 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 50 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 55 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 58 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 63 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} [all …]
|
/external/chromium/chrome/browser/ui/webui/options/ |
D | advanced_options_utils_gtk.cc | 77 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/ |
D | cd_linux.cpp | 212 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/ |
D | cd_linux.c | 212 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/clang/include/clang/Basic/ |
D | DiagnosticCommentKinds.td | 47 "empty paragraph passed to '%select{\\|@}0%1' command">, 51 "duplicated command '%select{\\|@}0%1'">, 55 "previous command '%select{\\|@}0%1' here">; 58 "previous command '%select{\\|@}0%1' (an alias of '\\%2') here">; 60 // \param command 72 "'%select{\\|@}0param' command used in a comment that is not attached to " 77 "'%select{\\|@}0%select{function|method|callback}1' command should be " 84 "command should not be used in a comment attached to a " 91 "command should not be used in a comment attached to a non-container declaration">, 108 // tparam command [all …]
|
/external/chromium/chrome/browser/sessions/ |
D | session_service.cc | 319 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/ |
D | ExtensionAPI.js | 53 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 …]
|