| /ndk/sources/host-tools/make-3.81/ |
| commands.h | 1 /* Definition of data structures describing shell commands for GNU Make. 19 /* Structure that gives the commands to make a file 20 and information about where these commands came from. */ 22 struct commands struct 24 struct floc fileinfo; /* Where commands were defined. */ 25 char *commands; /* Commands text. */ member in struct:commands 27 char **command_lines; /* Commands chopped up into lines. */ 39 extern void print_commands PARAMS ((struct commands *cmds)); 41 extern void chop_commands PARAMS ((struct commands *cmds)) [all...] |
| rule.h | 28 struct commands *cmds; /* Commands to execute. */ 36 char *target, *dep, *commands; member in struct:pspec 59 struct commands *commands,
|
| /external/chromium/chrome/browser/sessions/ |
| session_backend_unittest.cc | 57 std::vector<SessionCommand*> commands; local 58 commands.push_back(CreateCommandFromData(data)); 59 backend->AppendCommands(new SessionCommands(commands), false); 60 commands.clear(); 65 backend->ReadLastSessionCommandsImpl(&commands); 67 ASSERT_EQ(1U, commands.size()); 68 AssertCommandEqualsData(data, commands[0]); 70 STLDeleteElements(&commands); 74 backend->ReadLastSessionCommandsImpl(&commands); 76 ASSERT_EQ(0U, commands.size()) 104 std::vector<SessionCommand*> commands; local 129 std::vector<SessionCommand*> commands; local 169 std::vector<SessionCommand*> commands; local 182 std::vector<SessionCommand*> commands; local [all...] |
| session_backend.h | 24 // . The current file, which is the file commands passed to AppendCommands 29 // Each file contains an arbitrary set of commands supplied from 58 // Appends the specified commands to the current file. If reset_first is 61 // NOTE: this deletes SessionCommands in commands as well as the supplied 63 void AppendCommands(std::vector<SessionCommand*>* commands, 66 // Invoked from the service to read the commands that make up the last 71 // Reads the commands from the last file. 73 // On success, the read commands are added to commands. It is up to the 74 // caller to delete the commands [all...] |
| /external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
| __init__.py | 3 from webkitpy.tool.commands.bugsearch import BugSearch 4 from webkitpy.tool.commands.bugfortest import BugForTest 5 from webkitpy.tool.commands.download import * 6 from webkitpy.tool.commands.earlywarningsystem import * 7 from webkitpy.tool.commands.openbugs import OpenBugs 8 from webkitpy.tool.commands.prettydiff import PrettyDiff 9 from webkitpy.tool.commands.queries import * 10 from webkitpy.tool.commands.queues import * 11 from webkitpy.tool.commands.rebaseline import Rebaseline 12 from webkitpy.tool.commands.rebaselineserver import RebaselineServe [all...] |
| prettydiff.py | 29 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
|
| openbugs_unittest.py | 29 from webkitpy.tool.commands.commandtest import CommandsTest 30 from webkitpy.tool.commands.openbugs import OpenBugs
|
| roll_unittest.py | 30 from webkitpy.tool.commands.commandtest import CommandsTest 31 from webkitpy.tool.commands.roll import *
|
| sheriffbot_unittest.py | 31 from webkitpy.tool.commands.queuestest import QueuesTest 32 from webkitpy.tool.commands.sheriffbot import SheriffBot
|
| /development/cmds/monkey/src/com/android/commands/monkey/ |
| MonkeyEventSource.java | 17 package com.android.commands.monkey;
|
| MonkeyViewException.java | 16 package com.android.commands.monkey;
|
| MonkeyNoopEvent.java | 17 package com.android.commands.monkey;
|
| MonkeyUtils.java | 17 package com.android.commands.monkey;
|
| /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
| AOptimizedMultipleCommand.java | 18 private final PCommand[] commands; field in class:AOptimizedMultipleCommand 22 commands = new PCommand[originalChildCommands.size()]; 23 originalChildCommands.toArray(commands); 24 for (int i = 0; i < commands.length; i++) { 25 commands[i].parent(this); // set parent. 45 for (int i = 0; i < commands.length; i++) { 46 if (commands[i] == oldChild) { 47 commands[i] = (PCommand) newChild; 58 for (int i = 0; i < commands.length; i++) { 59 commands[i].apply(sw) [all...] |
| /cts/libs/vogar-expect/src/vogar/commands/ |
| Mkdir.java | 17 package vogar.commands;
|
| Rm.java | 17 package vogar.commands;
|
| /prebuilt/common/eclipse/ |
| org.eclipse.core.commands_3.4.0.I20080509-2000.jar | |
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
| AndroidNature.java | 177 ICommand[] commands = desc.getBuildSpec(); local 180 for (int i = 0; i < commands.length; ++i) { 181 if (ResourceManagerBuilder.ID.equals(commands[i].getBuilderName())) { 187 ICommand[] newCommands = new ICommand[commands.length + 1]; 188 System.arraycopy(commands, 0, newCommands, 1, commands.length); 206 ICommand[] commands = desc.getBuildSpec(); local 209 for (int i = 0; i < commands.length; ++i) { 210 if (PreCompilerBuilder.ID.equals(commands[i].getBuilderName())) { 218 for (int i = 0; i < commands.length; ++i) 251 ICommand[] commands = desc.getBuildSpec(); local 277 ICommand[] commands = description.getBuildSpec(); local [all...] |
| /frameworks/base/core/java/android/nfc/ |
| ApduList.java | 14 private ArrayList<byte[]> commands = new ArrayList<byte[]>(); field in class:ApduList 20 commands.add(command); 24 return commands; 48 commands.add(cmd); 59 dest.writeInt(commands.size()); 61 for (byte[] cmd : commands) {
|
| /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/ |
| irc.js | 3 * subset of the IRC commands are implemented. To be functional, IRCConnection 33 sendCommand(commands.JOIN, [channel], ""); 37 sendCommand(commands.PRIVMSG, [recipient], message); 41 sendCommand(commands.PART, [channel], ""); 45 sendCommand(commands.QUIT, [], message); 56 sendCommand(commands.NICK, [this.nick], ""); 57 sendCommand(commands.USER, 71 if (parsed.command == commands.PING) { 72 sendCommand(commands.PONG, [], parsed.body); 77 if (parsed.command == commands.PRIVMSG) [all...] |
| /libcore/luni/src/test/java/tests/api/java/lang/ |
| ProcessManagerTest.java | 38 String[] commands = { "cat" }; local 39 Process process = Runtime.getRuntime().exec(commands, null, null); 52 String[] commands = { "sleep", "1" }; local 53 process = Runtime.getRuntime().exec(commands, null, null); 64 String[] commands = { "sleep", "1000"}; 66 process = Runtime.getRuntime().exec(commands, null, null); 115 String[] commands = { "sh", "-c", "pwd" }; local 117 commands, null, new File("/")); 123 String[] commands = { "sh", "-c", "echo $FOO" }; local 128 commands, environment, null) 183 String[] commands = { "ls", "\/proc\/self\/fd" }; local 219 String[] commands = { "doesnotexist" }; local [all...] |
| /external/chromium/chrome/browser/renderer_host/ |
| gtk_key_bindings_handler.cc | 162 const char *commands[3] = { NULL, NULL, NULL }; local 165 commands[0] = (count > 0 ? "DeleteForward" : "DeleteBackward"); 168 commands[0] = (count > 0 ? "DeleteWordForward" : "DeleteWordBackward"); 172 commands[0] = "MoveWordForward"; 173 commands[1] = "DeleteWordBackward"; 175 commands[0] = "MoveWordBackward"; 176 commands[1] = "DeleteWordForward"; 180 commands[0] = "MoveToBeginningOfLine"; 181 commands[1] = "DeleteToEndOfLine"; 184 commands[0] = (count > 0 ? "DeleteToEndOfLine" [all...] |
| /external/chromium/chrome/browser/ui/webui/options/ |
| advanced_options_utils_gtk.cc | 39 // Search $PATH to find one of the commands. Store the full path to 41 bool SearchPATH(ProxyConfigCommand* commands, size_t ncommands, size_t* index) { 48 // Search $PATH looking for the commands in order. 51 bin_path = FilePath(tk.token()).Append(commands[i].argv[0]); 53 commands[i].binary = bin_path.value(); 105 ProxyConfigCommand commands[2]; local 106 commands[0].argv = kGNOMEProxyConfigCommand; 107 commands[1].argv = kOldGNOMEProxyConfigCommand; 108 found_command = SearchPATH(commands, 2, &index); 110 command = commands[index] [all...] |
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
| token.ml | 8 (* commands *)
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
| token.ml | 8 (* commands *)
|