| /frameworks/base/cmds/installd/ |
| Android.mk | 4 commands.c utils.c
|
| /libcore/luni/src/test/java/tests/api/java/lang/ |
| Process2Test.java | 48 String[] commands = {"ls"}; local 51 process = Runtime.getRuntime().exec(commands, null, null);
|
| /packages/apps/VoiceDialer/src/com/android/voicedialer/ |
| CommandRecognizerEngine.java | 43 * This is a RecognizerEngine that processes commands to make phone calls and 52 * the {@RecognizerClient}. It will accept the following types of commands: 963 String[] commands = semantic.trim().split(" "); local [all...] |
| /external/llvm/utils/lit/lit/ |
| TclUtil.py | 202 commands = [Command([],[])] 208 commands.append(Command([],[])) 212 commands[-1].redirects.insert(0, (('>&',2),'1')) 213 commands.append(Command([],[])) 215 commands[-1].redirects.append(self.parse_redirect(arg, 4)) 217 commands[-1].redirects.append(self.parse_redirect(arg, 3)) 219 commands[-1].redirects.append(self.parse_redirect(arg, 2)) 221 commands[-1].redirects.append(self.parse_redirect(arg, 1)) 223 commands[-1].args.append(arg) 225 return Pipeline(commands, False, pipe_err=True [all...] |
| TestRunner.py | 75 for i,j in enumerate(cmd.commands): 144 if stderr == subprocess.PIPE and j != cmd.commands[-1]: 217 results.append((cmd.commands[i], out, err, res)) 239 def executeScriptInternal(test, litConfig, tmpBase, commands, cwd): 240 ln = ' &&\n'.join(commands) 263 def executeTclScriptInternal(test, litConfig, tmpBase, commands, cwd): 266 for ln in commands: 289 if pipeline.commands: 292 cmd = pipeline.commands[0] 339 def executeScript(test, litConfig, tmpBase, commands, cwd) [all...] |
| /cts/libs/vogar-expect/src/vogar/commands/ |
| CommandFailedException.java | 17 package vogar.commands;
|
| /development/cmds/monkey/src/com/android/commands/monkey/ |
| MonkeyCommandEvent.java | 17 package com.android.commands.monkey;
|
| MonkeyInstrumentationEvent.java | 17 package com.android.commands.monkey;
|
| /external/chromium/chrome/browser/ui/gtk/ |
| global_menu_bar.h | 44 GlobalMenuBarCommand* commands);
|
| global_menu_bar.cc | 55 // TODO(erg): Need to add support for undo/redo/other editing commands that 192 GlobalMenuBarCommand* commands) { 194 for (int i = 0; commands[i].str_id != MENU_END; ++i) { 196 if (commands[i].str_id == MENU_SEPARATOR) { 199 int command_id = commands[i].command; 202 l10n_util::GetStringUTF8(commands[i].str_id));
|
| /external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
| abstractsequencedcommand.py | 31 from webkitpy.tool.commands.stepsequence import StepSequence
|
| rebaseline_unittest.py | 33 from webkitpy.tool.commands.rebaseline import BuilderToPort, Rebaseline
|
| queries_unittest.py | 33 from webkitpy.tool.commands.commandtest import CommandsTest 34 from webkitpy.tool.commands.queries import *
|
| /external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
| VarOptimizer.java | 41 * <li>String concatenation in var commands 45 * String add expressions in var commands are optimized by replacing something like: 158 * simpler var commands. Currently two expressions are targetted for expansion: string 165 // This test relies on the type optimizer having replaced add commands 166 // with numeric add commands. 178 // sequence commands. 210 * Helper to efficiently add commands to a multiple command (if the command to be added is a 212 * to flatten multiple commands. 264 * multiple successive (matching) escape commands folded into one. 268 LinkedList<PCommand> commands = new LinkedList<PCommand>() local [all...] |
| /libcore/luni/src/main/native/ |
| java_lang_ProcessManager.cpp | 62 static pid_t executeProcess(JNIEnv* env, char** commands, char** environment, 143 execvp(commands[0], commands); 227 // Copy commands into char*[]. 228 char** commands = convertStrings(env, javaCommands); local 239 pid_t result = executeProcess(env, commands, environment, workingDirectory, 253 freeStrings(env, javaCommands, commands);
|
| /development/tools/glesv2debugger/src/com/android/glesv2debugger/ |
| MessageQueue.java | 46 private ArrayList<Message> commands = new ArrayList<Message>(); // synchronized field in class:MessageQueue 75 synchronized (commands) { 76 for (int i = 0; i < commands.size(); i++) { 77 Message command = commands.get(i); 79 sendMessage(commands.remove(i)); 87 synchronized (commands) { 88 commands.add(command);
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
| MessageQueue.java | 46 private ArrayList<Message> commands = new ArrayList<Message>(); // synchronized field in class:MessageQueue 75 synchronized (commands) { 76 for (int i = 0; i < commands.size(); i++) { 77 Message command = commands.get(i); 79 sendMessage(commands.remove(i)); 87 synchronized (commands) { 88 commands.add(command);
|
| /bionic/libc/kernel/tools/ |
| utils.py | 3 import sys, os, commands, string, commands namespace 84 status, version = commands.getstatusoutput( "uname -r" ) # get Linux kernel version 389 o = commands.getoutput( "p4 add " + files ) 396 o = commands.getoutput( "p4 edit " + files ) 405 o = commands.getoutput( "p4 delete " + files ) 414 commands.getoutput("git add " + " ".join(adds)) 417 commands.getoutput("git rm " + " ".join(deletes)) 422 commands.getoutput("git add " + " ".join(edits))
|
| /ndk/sources/host-tools/make-3.81/ |
| rule.c | 23 #include "commands.h" 159 CMDS are the commands. 164 convert_suffix_rule (char *target, char *source, struct commands *cmds) 240 /* Make a rule that is just the suffix, with no deps or commands. 242 convert_suffix_rule (dep_name (d), (char *) 0, (struct commands *) 0); 397 r->cmds = (struct commands *) xmalloc (sizeof (struct commands)); 402 r->cmds->commands = xstrdup (p->commands); 439 /* We can't free the storage for the commands because ther [all...] |
| /external/webkit/Tools/wx/build/ |
| build_utils.py | 26 import commands namespace 44 return commands.getoutput(command) 160 branches = commands.getoutput("git branch --no-color") 180 info = commands.getoutput("git-svn info ../..") 182 info = commands.getoutput("svn info")
|
| /frameworks/base/tools/preload/ |
| MemoryUsage.java | 222 String[] commands = GET_DIRTY_PAGES; local 226 commandList.addAll(Arrays.asList(commands)); 228 commands = commandList.toArray(new String[commandList.size()]); 232 final Process process = Runtime.getRuntime().exec(commands); 251 + ": " + line + "; command was " + Arrays.toString(commands));
|
| /external/webkit/Source/WebCore/storage/ |
| IDBSQLiteBackingStore.cpp | 54 static bool runCommands(SQLiteDatabase& sqliteDatabase, const char** commands, size_t numberOfCommands) 59 if (!sqliteDatabase.executeCommand(commands[i])) { 60 LOG_ERROR("Failed to run the following command for IndexedDB: %s", commands[i]); 72 static const char* commands[] = { local 91 return runCommands(sqliteDatabase, commands, sizeof(commands) / sizeof(commands[0])); 96 static const char* commands[] = { local 101 return runCommands(sqliteDatabase, commands, sizeof(commands) / sizeof(commands[0])) 126 static const char* commands[] = { local 152 static const char* commands[] = { local [all...] |
| /external/clang/tools/scan-view/ |
| startfile.py | 110 import commands namespace 125 info = commands.getoutput('kde-config --version') 158 info = commands.getoutput('xprop -root _DT_SAVE_MODE')
|
| /external/chromium/chrome/browser/sessions/ |
| session_service_test_helper.cc | 24 const std::vector<SessionCommand*>& commands, 26 service()->RestoreSessionFromCommands(commands, valid_windows);
|
| /external/webkit/Source/JavaScriptCore/ |
| wscript | 28 import commands
|