Searched refs:command (Results 1 - 25 of 537) sorted by relevance

1234567891011>>

/external/libvorbis/vq/
H A Dmake_floor_books.pl26 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\
[all...]
H A Dmake_residue_books.pl31 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
[all...]
/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/qemu/distrib/sdl-1.2.15/build-scripts/
H A Dstrip_fPIC.sh5 command=""
15 command="$command $1"
20 echo $command
21 exec $command
/external/chromium/chrome/browser/ui/cocoa/applescript/
H A 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/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dmenu_item.js34 if ((commandId = this.getAttribute('command')))
35 this.command = commandId;
41 * The command associated with this menu item. If this is set to a string
43 * of the command.
47 get command() {
50 set command(command) {
58 if (typeof command == 'string' && command[0] == '#') {
59 command
[all...]
H A Dcommand.js6 * @fileoverview A command is an abstraction of an action a user can do in the
9 * When the focus changes in the document for each command a canExecute event
11 * enable and disable the command by setting the event.canExecute property.
13 * When a command is executed a command event is dispatched on the active
15 * command if there might be other command listeners higher up in the DOM tree.
68 * Creates a new command element.
72 var Command = cr.ui.define('command');
78 * Initializes the command
[all...]
/external/valgrind/main/gdbserver_tests/
H A Dmchelp.stderrB.exp1 sending command help to pid ....
2 sending command help debug to pid ....
3 sending command v.kill to pid ....
H A 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
[all...]
H A 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
[all...]
/external/chromium/chrome/browser/ui/cocoa/
H A Dbrowser_command_executor.h12 - (void)executeCommand:(int)command;
H A Dcommand_observer_bridge.h18 // command ids it cares about, and then wait for update notifications,
29 // Register for updates about |command|.
30 void ObserveCommand(int command);
34 virtual void EnabledStateChangedForCommand(int command, bool enabled);
42 // state change for the given command.
44 - (void)enabledStateChangedForCommand:(NSInteger)command enabled:(BOOL)enabled;
/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/webkit/Tools/Scripts/webkitpy/common/config/
H A 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
[all...]
/external/webkit/Tools/DumpRenderTree/qt/
H A DTextInputControllerQt.cpp42 void TextInputController::doCommand(const QString& command) argument
46 if (command == "moveBackwardAndModifySelection:") {
49 } else if (command =="moveDown:") {
51 } else if (command =="moveDownAndModifySelection:") {
54 } else if (command =="moveForward:") {
56 } else if (command =="moveForwardAndModifySelection:") {
59 } else if (command =="moveLeft:") {
61 } else if (command =="moveLeftAndModifySelection:") {
64 } else if (command =="moveRight:") {
66 } else if (command
[all...]
/external/chromium/chrome/browser/
H A Dcommand_updater.cc33 const CommandMap::const_iterator command(commands_.find(id));
34 if (command == commands_.end())
36 return command->second->enabled;
52 Command* command = GetCommand(id, true); local
53 if (command->enabled == enabled)
55 command->enabled = enabled;
56 FOR_EACH_OBSERVER(CommandObserver, command->observers,
65 Command* command = new Command; local
66 commands_[id] = command;
67 return command;
82 Command* command = it->second; local
[all...]
/external/clang/utils/analyzer/
H A Dreducer.pl6 die "$prog <code file> <error string> [optional command]\n" if ($#ARGV < 0);
24 my $command;
25 if (scalar(@ARGV) > 0) { $command = \@ARGV; }
28 $command = [$compiler, "-fsyntax-only", "-Wfatal-errors", "-Wno-deprecated-declarations", "-Wimplicit-function-declaration"];
30 push @$command, $srcFile;
31 my $commandStr = "@$command";
39 my \$command = "$commandStr > $reduceOut 2>&1";
40 system(\$command);
/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/chromium/chrome/browser/ui/cocoa/tabs/
H A Dtab_controller_target.h19 - (void)commandDispatch:(TabStripModel::ContextMenuCommand)command
21 // Returns YES if the specificed command should be enabled for the given
23 - (BOOL)isCommandEnabled:(TabStripModel::ContextMenuCommand)command
/external/emma/core/java12/
H A Demmarun.java26 final Command command = Command.create ("run", emmarun.class.getName (), args);
27 command.run ();
/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/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A 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_i
[all...]
/external/webkit/LayoutTests/http/tests/resources/
H A 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
[all...]

Completed in 451 milliseconds

1234567891011>>