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

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/common/eclipse/
org.eclipse.core.commands_3.4.0.I20080509-2000.jar 
  /external/webkit/WebKit/qt/docs/
docs.pri 10 docs.commands = $$QDOC $$PWD/qtwebkit.qdocconf
12 docs.commands = \"$$QDOC $$PWD/qtwebkit.qdocconf\"
  /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/bluetooth/bluez/compat/
hidd.1 2 .TH HIDD "1" "May 2004" "hidd - Bluetooth HID daemon" "User Commands"
9 hidd [options] [commands]
23 .SS "Commands:"
  /frameworks/base/cmds/svc/src/com/android/commands/svc/
Svc.java 17 package com.android.commands.svc;
49 final int N = COMMANDS.length;
51 Command c = COMMANDS[i];
75 System.err.println("Available commands:");
76 final int N = COMMANDS.length;
79 Command c = COMMANDS[i];
87 Command c = COMMANDS[i];
93 public static final Command[] COMMANDS = new Command[] {
  /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...]
  /development/cmds/monkey/
monkey 6 exec app_process $base/bin com.android.commands.monkey.Monkey $*
  /external/qemu/
Android.mk 2 # through the 'm' or 'mm' build commands. if not, we use the
  /frameworks/base/cmds/am/
am 6 exec app_process $base/bin com.android.commands.am.Am "$@"
  /frameworks/base/cmds/bmgr/
bmgr 6 exec app_process $base/bin com.android.commands.bmgr.Bmgr "$@"
  /frameworks/base/cmds/ime/
ime 6 exec app_process $base/bin com.android.commands.ime.Ime "$@"
  /frameworks/base/cmds/input/
input 6 exec app_process $base/bin com.android.commands.input.Input $*
  /frameworks/base/cmds/installd/
Android.mk 7 installd.c commands.c utils.c
  /frameworks/base/cmds/pm/
pm 6 exec app_process $base/bin com.android.commands.pm.Pm "$@"
  /frameworks/base/cmds/svc/
svc 6 exec app_process $base/bin com.android.commands.svc.Svc $*
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
smb_fs.h 15 * ioctl commands
ipc.h 35 * Control commands used with semctl, msgctl and shmctl
36 * see also specific commands in sem.h, msg.h and shm.h
44 * Version flags for semctl, msgctl, and shmctl commands
  /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...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
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/kernel-headers/original/linux/
ipc.h 35 * Control commands used with semctl, msgctl and shmctl
36 * see also specific commands in sem.h, msg.h and shm.h
44 * Version flags for semctl, msgctl, and shmctl commands
reboot.h 16 * Commands accepted by the _reboot() system call.
47 * Architecture-specific implementations of sys_reboot commands.
59 * Architecture independent implemenations of sys_reboot commands.
  /external/quake/quake/src/WinQuake/
cmd.h 27 Any number of commands can be added in a frame, from several different sources.
28 Most commands come from either keybindings or console line input, but remote
29 servers can also send across commands and entire text files can be execed.
42 // as new commands are generated from the console or keybindings,
46 // when a command wants to issue other commands immediately, the text is
48 // commands.
63 Commands can come from three sources, but the handler functions may choose
85 // register commands and functions to call for them.
98 // The functions that execute commands get their parameters with these
120 // things like godmode, noclip, etc, are commands directed to the server
    [all...]
  /frameworks/base/docs/html/guide/practices/ui_guidelines/
menu_design.jd 10 <li>An Options menu is for any commands that are global to the current activity. </li>
11 <li>A Context menu is for any commands that apply to the current selection. </li>
13 <li>Put only the most important commands fixed on the screen. </li>
14 <li>The commands on the Context menu that appears when you touch &amp; hold on an item should be duplicated on the activity you get to by a normal press on that item.
26 <li style="padding-top: 4px;"><a href=#commands_fixed>Commands Fixed in an Activity Screen</a></li>
31 <li style="padding-top: 4px;"><a href=#separate_commands>Separate specific from global commands</a></li>
33 <li style="padding-top: 4px;"><a href=#dont_put_commands>Don't put commands <em>only</em> in a Context menu</li>
37 <li style="padding-top: 4px;"><a href=#most_important_commands>Put only most important commands fixed on the screen</a></li>
57 A menu holds a set of commands (user actions) that are normally hidden, and
58 are accessible by a button, key, or gesture. Menu commands provide a mean
    [all...]
  /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 *
  /frameworks/base/core/java/android/bluetooth/
AtCommandHandler.java 28 * Handle Basic commands "ATA".<p>
29 * These are single letter commands such as ATA and ATD. Anything following
43 * Action commands are part of the Extended command syntax, and are
53 * Read commands are part of the Extended command syntax, and are
63 * Set commands are part of the Extended command syntax, and are
83 * Test commands are part of the Extended command syntax, and are typically

Completed in 580 milliseconds

1 2 3 4 5 6 7 8 91011>>