HomeSort by relevance Sort by last modified time
    Searched refs:commands (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyEventSource.java 17 package com.android.commands.monkey;
MonkeyNoopEvent.java 17 package com.android.commands.monkey;
MonkeyUtils.java 17 package com.android.commands.monkey;
MonkeyEvent.java 17 package com.android.commands.monkey;
MonkeyEventQueue.java 17 package com.android.commands.monkey;
MonkeyThrottleEvent.java 17 package com.android.commands.monkey;
MonkeyWaitEvent.java 17 package com.android.commands.monkey;
MonkeyInstrumentationEvent.java 17 package com.android.commands.monkey;
  /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...]
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
openbugs_unittest.py 29 from webkitpy.commands.commandtest import CommandsTest
30 from webkitpy.commands.openbugs import OpenBugs
early_warning_system_unittest.py 31 from webkitpy.commands.early_warning_system import *
32 from webkitpy.commands.queuestest import QueuesTest
queues_unittest.py 31 from webkitpy.commands.commandtest import CommandsTest
32 from webkitpy.commands.queues import *
33 from webkitpy.commands.queuestest import QueuesTest
queries_unittest.py 30 from webkitpy.commands.commandtest import CommandsTest
31 from webkitpy.commands.queries import *
  /external/webkit/WebKitTools/Scripts/
test-webkitpy 36 from webkitpy.commands.download_unittest import *
37 from webkitpy.commands.early_warning_system_unittest import *
38 from webkitpy.commands.openbugs_unittest import OpenBugsTest
39 from webkitpy.commands.upload_unittest import *
40 from webkitpy.commands.queries_unittest import *
41 from webkitpy.commands.queues_unittest import *
webkit-patch 37 from webkitpy.commands.download import *
38 from webkitpy.commands.early_warning_system import *
39 from webkitpy.commands.openbugs import OpenBugs
40 from webkitpy.commands.queries import *
41 from webkitpy.commands.queues import *
42 from webkitpy.commands.upload import *
67 # Lazily initialize SCM to not error-out before command line parsing (or when running non-scm commands).
93 # FIXME: This may be unnecessary since we pass global options to all commands during execute() as well.
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/
ProcessManagerTest.java 48 String[] commands = { "cat" }; local
49 Process process = Runtime.getRuntime().exec(commands, null, null);
68 String[] commands = { "sleep", "1" }; local
69 process = Runtime.getRuntime().exec(commands, null, null);
80 String[] commands = { "sleep", "1000"};
82 process = Runtime.getRuntime().exec(commands, null, null);
137 String[] commands = { "sh", "-c", "pwd" }; local
139 commands, null, new File("/"));
151 String[] commands = { "sh", "-c", "echo $FOO" }; local
156 commands, environment, null)
224 String[] commands = { "ls", "\/proc\/self\/fd" }; local
267 String[] commands = { "doesnotexist" }; local
    [all...]
ProcessTest.java 49 String[] commands = { "sleep", "1"}; local
50 Process proc = Runtime.getRuntime().exec(commands, null, null);
91 String[] commands = { "sleep", "1"}; local
92 Process proc = Runtime.getRuntime().exec(commands, null, null);
137 String[] commands = { "ls" }; local
138 Process process = Runtime.getRuntime().exec(commands, null, null);
185 String[] commands = { "ls"}; local
187 Process process = Runtime.getRuntime().exec(commands, null, null);
  /frameworks/base/cmds/installd/
Android.mk 7 installd.c commands.c utils.c
  /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/quake/quake/src/WinQuake/
gl_mesh.cpp 39 int commands[8192]; variable
258 commands[numcommands++] = (bestlen+2);
260 commands[numcommands++] = -(bestlen+2);
268 // emit s/t coords into the commands stream
277 commands[numcommands++] = temp.i;
279 commands[numcommands++] = temp.i;
283 commands[numcommands++] = 0; // end of list marker
323 fread (&commands, numcommands * sizeof(commands[0]), 1, f);
345 fwrite (&commands, numcommands * sizeof(commands[0]), 1, f)
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
multicommandtool.py 125 # main() exists so that Commands can be turned into stand-alone scripts.
129 # Some commands might require a dummy tool
169 make_option("-a", "--all-commands", action="store_true", dest="show_all_commands", help="Print all available commands"),
172 self.show_all_commands = False # A hack used to pass --all-commands to _help_epilog even though it's called by the OptionParser.
175 # Only show commands which are relevant to this checkout's SCM system. Might this be confusing to some users?
177 epilog = "All %prog commands:\n"
178 relevant_commands = self.tool.commands[:]
180 epilog = "Common %prog commands:\n"
181 relevant_commands = filter(self.tool.should_show_in_main_help, self.tool.commands)
    [all...]
multicommandtool_unittest.py 72 def __init__(self, commands=None):
73 MultiCommandTool.__init__(self, name="trivial-tool", commands=commands)
111 tool = TrivialTool(commands=[TrivialCommand(), UncommonCommand()])
117 Common trivial-tool commands:
120 See 'trivial-tool help --all-commands' to list all commands.
131 All trivial-tool commands:
136 See 'trivial-tool help --all-commands' to list all commands
    [all...]
  /external/qemu/
Android.mk 2 # through the 'm' or 'mm' build commands. if not, we use the
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
CommandRecognizerEngine.java 44 * This is a RecognizerEngine that processes commands to make phone calls and
53 * the {@RecognizerClient}. It will accept the following types of commands:
964 String[] commands = semantic.trim().split(" "); local
    [all...]

Completed in 392 milliseconds

1 2 3 4 5