HomeSort by relevance Sort by last modified time
    Searched full:command (Results 226 - 250 of 8546) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/MachO/
section-align-1.s 16 // CHECK: # Load Command 0
17 // CHECK: (('command', 1)
44 // CHECK: # Load Command 1
45 // CHECK: (('command', 2)
63 // CHECK: # Load Command 2
64 // CHECK: (('command', 11)
string-table.s 12 // CHECK: # Load Command 0
13 // CHECK: (('command', 1)
49 // CHECK: # Load Command 1
50 // CHECK: (('command', 2)
76 // CHECK: # Load Command 2
77 // CHECK: (('command', 11)
temp-labels.s 3 // CHECK: # Load Command 1
4 // CHECK: (('command', 2)
  /external/openssh/regress/
key-options.sh 10 # Test command= forced command
12 for c in 'command="echo bar"' 'no-pty,command="echo bar"'; do
17 fail "key option forced command not restricted"
20 fail "key option forced command not executed"
  /external/protobuf/gtest/test/
gtest_uninitialized_test.py 39 COMMAND = gtest_test_utils.GetTestExecutablePath('gtest_uninitialized_test_')
54 def TestExitCodeAndOutput(command):
55 """Runs the given command and verifies its exit code and output."""
57 # Verifies that 'command' exits with code 1.
58 p = gtest_test_utils.Subprocess(command)
66 TestExitCodeAndOutput(COMMAND)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
pg.h 6 command driver for parallel port ATAPI devices (pg). The
14 A write operation delivers a command and any outbound data in
17 command pending. If the write succeeds, it should be followed
28 current ATAPI devices, command packets are assumed to be exactly
49 char packet[12]; /* packet command */
58 int duration; /* time in seconds command took */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
pg.h 6 command driver for parallel port ATAPI devices (pg). The
14 A write operation delivers a command and any outbound data in
17 command pending. If the write succeeds, it should be followed
28 current ATAPI devices, command packets are assumed to be exactly
49 char packet[12]; /* packet command */
58 int duration; /* time in seconds command took */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
pg.h 6 command driver for parallel port ATAPI devices (pg). The
14 A write operation delivers a command and any outbound data in
17 command pending. If the write succeeds, it should be followed
28 current ATAPI devices, command packets are assumed to be exactly
49 char packet[12]; /* packet command */
58 int duration; /* time in seconds command took */
  /external/e2fsprogs/ext2ed/
main.c 14 2. The parser, which asks the command line from the user.
15 3. The dispatcher, which analyzes the command line and calls the appropriate handler function.
16 4. A command pattern matcher which is used along with the readline completion feature.
60 int AllowChanges=0; /* When set, the enablewrite command will fail */
68 char last_command_line [80]; /* A simple one command cache, in addition to the readline history */
134 * Read a character from the command window
189 * This function asks the user for a command and calls the dispatcher
191 * function readline to read the command, hence all the usual readline
192 * keys are available. The new command is saved both in the
193 * readline's history and in our tiny one-command cache, so that onl
362 char command [80]; local
    [all...]
  /external/clang/include/clang/AST/
CommentSema.h 58 /// AST node for the \\brief command and its aliases.
61 /// AST node for the \\returns command and its aliases.
64 /// AST node for the \\headerfile command.
102 void actOnBlockCommandArgs(BlockCommandComment *Command,
105 void actOnBlockCommandFinish(BlockCommandComment *Command,
113 void actOnParamCommandDirectionArg(ParamCommandComment *Command,
118 void actOnParamCommandParamNameArg(ParamCommandComment *Command,
123 void actOnParamCommandFinish(ParamCommandComment *Command,
131 void actOnTParamCommandParamNameArg(TParamCommandComment *Command,
136 void actOnTParamCommandFinish(TParamCommandComment *Command,
    [all...]
  /external/icu4c/test/perf/utrie2perf/
utrie2perf.cpp 95 class Command : public UPerfFunction {
97 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {}
100 virtual ~Command() {}
115 class CheckFCD : public Command {
117 CheckFCD(const UTrie2PerfTest &testcase) : Command(testcase) {}
135 class CheckFCDAlwaysGet : public Command {
137 CheckFCDAlwaysGet(const UTrie2PerfTest &testcase) : Command(testcase) {}
156 class CheckFCDUTF8 : public Command {
158 CheckFCDUTF8(const UTrie2PerfTest &testcase) : Command(testcase) {}
173 class ToNFC : public Command {
    [all...]
  /frameworks/base/core/jni/
android_net_wifi_Wifi.cpp 86 // Send a command to the supplicant, and return the reply as a String
158 ScopedUtfChars command(env, jCommand);
160 if (command.c_str() == NULL) {
163 if (DBG) ALOGD("doBoolean: %s", command.c_str());
164 return doBooleanCommand(ifname.c_str(), "OK", "%s", command.c_str());
171 ScopedUtfChars command(env, jCommand);
173 if (command.c_str() == NULL) {
176 if (DBG) ALOGD("doInt: %s", command.c_str());
177 return doIntCommand(ifname.c_str(), "%s", command.c_str());
185 ScopedUtfChars command(env, jCommand)
    [all...]
  /external/grub/docs/
grub.texi 28 command from a
114 * Interface:: The menu and the command-line
120 * Invoking grub-terminfo:: How to generate a terminfo command
167 When booting with GRUB, you can use either a command-line interface
168 (@pxref{Command-line interface}), or a menu interface (@pxref{Menu
169 interface}). Using the command-line interface, you type the drive
174 command-line mode, and vice-versa. You can even edit menu entries
183 @command{grub} (@pxref{Invoking the grub shell}) which can be run when
262 command-line. An example configuration file is provided in
270 @item Have a flexible command-line interfac
    [all...]
  /cts/libs/vogar-expect/src/vogar/commands/
Mkdir.java 22 * A mkdir command.
27 new Command("mkdir", "-p", directory.getPath()).execute();
  /dalvik/dx/src/com/android/dx/command/
UsageException.java 17 package com.android.dx.command;
20 * Simple exception class used to communicate that the command-line tool
  /external/clang/test/Tooling/
clang-check-builtin-headers.cpp 3 // Add a path that doesn't exist as argv[0] for the compile command line:
4 // RUN: echo '[{"directory":".","command":"/random/tool -c %t/test.cpp","file":"%t/test.cpp"}]' | sed -e 's/\\/\//g' > %t/compile_commands.json
  /external/icu4c/layoutex/
layoutex.vcxproj 253 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
254 </Command>
256 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">copy "%(FullPath)" ..\..\include\layout
257 </Command>
259 <Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">copy "%(FullPath)" ..\..\include\layout
260 </Command>
262 <Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">copy "%(FullPath)" ..\..\include\layout
263 </Command>
267 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">copy "%(FullPath)" ..\..\include\layout
268 </Command>
    [all...]
  /external/iproute2/doc/
Plan 4 1.1 IP Command reference (ip-cref.tex, published)
5 1.2 TC Command reference (tc-cref.tex)
  /external/kernel-headers/original/linux/netfilter/
nf_conntrack_ftp.h 8 /* PORT command from client */
12 /* EPRT command from client */
  /external/regex-re2/util/
flags.h 5 // Simplified version of Google's command line flags.
6 // Does not support parsing the command line.
  /external/valgrind/main/gdbserver_tests/
simulate_control_c 4 # If there are some args after $2, the rest of these args is a command and its arg
5 # which is run every second. When this command is succesful, then the sleep and
  /external/webkit/LayoutTests/http/tests/appcache/resources/
versioned-manifest.php 28 if ("step" == $_GET['command'])
36 print("versioned-manifest.php?command=\n");
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
WebEditorClientGtk.cpp 39 // First try to interpret the command in the UI and get the commands.
47 Vector<Editor::Command> commands;
49 Editor::Command command = frame->editor()->command(pendingEditorCommands.at(i).utf8().data()); local
50 if (command.isTextInsertion() && !allowTextInsertion)
53 commands.append(command);
79 // During RawKeyDown events if an editor command will insert text, defer
  /frameworks/base/docs/html/tools/help/
layoutopt.jd 6 <p><code>layoutopt</code> is a command-line tool that helps you optimize the
9 <p>This document is a reference to the available command line options. For more information and sample
  /packages/inputmethods/LatinIME/tools/dicttool/etc/
makedict_aosp 16 # Dicttool supports making the dictionary using the 'makedict' command and
17 # the same arguments that the old 'makedict' command used to accept.

Completed in 397 milliseconds

1 2 3 4 5 6 7 8 91011>>