HomeSort by relevance Sort by last modified time
    Searched defs:commands (Results 51 - 75 of 169) sorted by null

1 23 4 5 6 7

  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
irc_command.py 103 return "%s: Available commands: %s" % (nick, ", ".join(commands.keys()))
139 commands = { variable
  /external/webkit/Tools/Scripts/webkitpy/tool/
main.py 47 from webkitpy.tool import commands namespace
78 # FIXME: This may be unnecessary since we pass global options to all commands during execute() as well.
  /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")
settings.py 26 import commands namespace
49 wx_root = commands.getoutput('wx-config --prefix')
312 min_version = commands.getoutput('sw_vers -productVersion')[:4]
  /frameworks/base/cmds/bu/src/com/android/commands/bu/
Backup.java 17 package com.android.commands.bu;
  /libcore/luni/src/test/java/tests/api/java/lang/
Process2Test.java 48 String[] commands = {"ls"}; local
51 process = Runtime.getRuntime().exec(commands, null, null);
  /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))
  /bionic/libc/tools/
bionic_utils.py 3 import sys, os, commands, string namespace
100 # p4 commands are issued
131 status, version = commands.getstatusoutput( "uname -r" ) # get Linux kernel version
gensyscalls.py 8 import sys, os.path, glob, re, commands, filecmp, shutil namespace
505 # commands.getoutput( "p4 edit " + arch + "/syscalls/*.S " )
506 # commands.getoutput( "p4 edit " + arch + "/syscalls.mk" )
507 # commands.getoutput( "p4 edit " + bionic_root + "include/sys/linux-syscalls.h" )
539 commands.getoutput("git add " + " ".join(adds))
541 commands.getoutput("git rm " + " ".join(deletes))
545 commands.getoutput("git add " +
548 commands.getoutput("git add %s%s" % (bionic_root,"SYSCALLS.TXT"))
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyPowerEvent.java 17 package com.android.commands.monkey;
MonkeyGetAppFrameRateEvent.java 17 package com.android.commands.monkey;
MonkeyGetFrameRateEvent.java 17 package com.android.commands.monkey;
MonkeyMotionEvent.java 17 package com.android.commands.monkey;
  /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/quake/quake/src/QW/client/
gl_mesh.c 39 int commands[8192]; variable
248 commands[numcommands++] = (bestlen+2);
250 commands[numcommands++] = -(bestlen+2);
258 // emit s/t coords into the commands stream
266 *(float *)&commands[numcommands++] = s;
267 *(float *)&commands[numcommands++] = t;
271 commands[numcommands++] = 0; // end of list marker
308 fread (&commands, numcommands * sizeof(commands[0]), 1, f);
338 fwrite (&commands, numcommands * sizeof(commands[0]), 1, f);
    [all...]
  /external/webkit/Tools/wx/packaging/
build-mac-installer.py 28 import commands namespace
83 output = commands.getoutput("otool -L %s" % dylib).strip()
  /frameworks/base/cmds/ime/src/com/android/commands/ime/
Ime.java 17 package com.android.commands.ime;
  /frameworks/base/cmds/input/src/com/android/commands/input/
Input.java 17 package com.android.commands.input;
  /frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
RequestSync.java 18 package com.android.commands.requestsync;
  /frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
RunTestCommand.java 17 package com.android.commands.uiautomator;
21 import com.android.commands.uiautomator.Launcher.Command;
  /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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidNature.java 181 ICommand[] commands = desc.getBuildSpec(); local
184 for (int i = 0; i < commands.length; ++i) {
185 if (ResourceManagerBuilder.ID.equals(commands[i].getBuilderName())) {
191 ICommand[] newCommands = new ICommand[commands.length + 1];
192 System.arraycopy(commands, 0, newCommands, 1, commands.length);
210 ICommand[] commands = desc.getBuildSpec(); local
213 for (int i = 0; i < commands.length; ++i) {
214 if (PreCompilerBuilder.ID.equals(commands[i].getBuilderName())) {
222 for (int i = 0; i < commands.length; ++i)
255 ICommand[] commands = desc.getBuildSpec(); local
281 ICommand[] commands = description.getBuildSpec(); local
    [all...]
  /system/extras/bugmailer/src/com/android/commands/sendbug/
SendBug.java 16 package com.android.commands.sendbug;
  /cts/libs/vogar-expect/src/vogar/commands/
Command.java 17 package vogar.commands;
262 * This must be a <strong>local</strong> directory; Commands run on

Completed in 2012 milliseconds

1 23 4 5 6 7