Searched refs:command (Results 1 - 25 of 1145) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
H A DANTLR3.java476 * A refactored method for populating all the command line arguments based
757 private int run(String[] command, OutputStream out, OutputStream err) throws IOException { argument
772 exe.setCommandline(command);
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
H A Dantlr3.jar ... .tools.ant.taskdefs.PumpStreamHandler psh String[] command java.io.OutputStream out java.io. ...
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
H A DTest.pm113 my ($command) = @_;
123 system @$command;
/external/antlr/antlr-3.4/runtime/Python/
H A Dez_setup.py157 from setuptools.command.easy_install import main
173 from setuptools.command.easy_install import main
180 from setuptools.command.easy_install import main
H A Dsetup.py9 from distutils.command.clean import clean as _clean
62 # Options for 'CmdUnitTest' command
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
H A DRuby.stg45 be done with the command:
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DCommandPacket.java31 * This class represents JDWP command packet.
38 private byte command; field in class:CommandPacket
48 * Creates an empty CommandPacket for specific JDWP command with no data.
50 public CommandPacket(byte commandSet, byte command) { argument
53 this.command = command;
64 command = bytes_array[COMMAND_INDEX];
68 * Sets command set value of the header of the CommandPacket as byte.
70 * @param val the command set.
77 * Gets command se
100 setCommand(byte commandSet, byte command) argument
[all...]
H A DPacketDispatcher.java53 * - begCommandIdForTrace defines starting command ID for trace
54 * (the first command has ID=1, the second - ID=2 and so on).
56 * - commandsNumberForTrace defines number of command for trace.
188 * Internal class to synchronize jdwp commands. It sends command packets
206 // set first command id to 1
211 * Gets the next new id for a command.
232 // obtain the current command id
235 // obtain the current command packet by command id
236 CommandPacket command
268 waitForReply(CommandPacket command, long timeout) argument
342 sendCommand(CommandPacket command) argument
655 performCommand(CommandPacket command) argument
678 performCommand(CommandPacket command, long timeout) argument
699 sendCommand(CommandPacket command) argument
[all...]
H A DVmMirror.java52 * of corresponding JDWP command or TestErrorException if any other error
105 * @return ReplyPacket for corresponding command
120 * @return ReplyPacket for corresponding command
143 * @return ReplyPacket for corresponding command
157 * @return ReplyPacket for corresponding command
185 * @return ReplyPacket for corresponding command
310 * @return ReplyPacket for corresponding command
314 // Create new command packet
317 // Set command. "2" - is ID of Clear command i
1852 performCommand(CommandPacket command) argument
1879 performCommand(CommandPacket command, long timeout) argument
1900 sendCommand(CommandPacket command) argument
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
H A DDisableCollectionTest.java39 * JDWP Unit test for ObjectReference.DisableCollection command.
43 static final String thisCommandName = "ObjectReference::DisableCollection command";
52 * This testcase exercises ObjectReference.DisableCollection command.
56 * ObjectReference.DisableCollection command for checked object. After that
76 .println("=> Send ReferenceType::GetValues command for received fieldID and get ObjectID to check...");
88 checkReplyPacket(getValuesReply, "ReferenceType::GetValues command");
94 "Invalid number of values returned from ReferenceType::GetValues command,",
150 * This testcase exercises ObjectReference.DisableCollection command.
165 * This testcase exercises ObjectReference.DisableCollection command.
180 CommandPacket command
[all...]
H A DEnableCollectionTest.java39 * JDWP Unit test for ObjectReference.EnableCollection command.
45 static final String thisCommandName = "ObjectReference::EnableCollection command";
53 * This testcase exercises ObjectReference.EnableCollection command.
56 * Then for this objectID test executes ObjectReference::DisableCollection command
57 * and ObjectReference.EnableCollection command. After that Debuggee tries to
73 ("=> Send ReferenceType::Fields command and get fieldID for field representing checked object...");
78 ("=> Send ReferenceType::GetValues command for received fieldID and get ObjectID to check...");
89 checkReplyPacket(getValuesReply, "ReferenceType::GetValues command");
107 ("\n=> Send ObjectReference::DisableCollection command for checked ObjectID...");
116 checkReplyPacket(disableCollectionReply, "ObjectReference::DisableCollection command");
[all...]
H A DIsCollectedTest.java39 * JDWP Unit test for ObjectReference.IsCollected command.
43 static final String thisCommandName = "ObjectReference.IsCollected command";
52 * This test exercises ObjectReference.IsCollected command.
56 * ObjectReference.DisableCollection command. After that Debuggee tries to
81 .println("=> Send ReferenceType::GetValues command for received fieldIDs and get ObjectIDs to check...");
94 checkReplyPacket(getValuesReply, "ReferenceType::GetValues command");
130 .println("\n=> Send ObjectReference::DisableCollection command for checkedObject_01...");
141 "ObjectReference::DisableCollection command");
250 * This testcase exercises ObjectReference.IsCollected command.
258 CommandPacket command
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPTestCase.java167 CommandPacket command = new CommandPacket(
170 command.setNextValueAsReferenceTypeID(objectID);
171 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
172 checkReplyPacket(reply, "ObjectReference::ReferenceType command");
189 CommandPacket command = new CommandPacket(
192 command.setNextValueAsClassID(classID);
193 ReplyPacket reply = debuggeeWrapper.vmMirror.performCommand(command);
194 checkReplyPacket(reply, "ReferenceType::Methods command");
209 * Issues LineTable command.
225 checkReplyPacket(lineTableReply, "Method::LineTable command");
[all...]
H A DJDWPUnitDebuggeeProcessWrapper.java120 * Launches process with given command line.
123 * command line
139 * Splits command line into arguments preserving spaces in quoted arguments
143 * command line
155 // parse command line
194 logWriter.println("Splitted command line: " + argv);
249 logWriter.println("Splitted command line: " + argv);
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Exec.java59 * Exec command returns the exitCode, and stdOut and stdErr as strings
61 public static Object[] run(String command, List<String> args, String[] envp, argument
64 Object[] arr = exec(command, args, envp, displayOutput);
164 StringBuilder command;
210 private static Object[] exec(String command, List<String> args, argument
215 args.add(0, command);
219 // construct command line string and print it to stdout
/external/bison/build-aux/
H A Dmdate-sh115 command=
120 # Add another shift to the command.
121 command="$command shift;"
144 eval $command
H A Dtexinfo.tex507 % If an index command is used in an @example environment, any spaces
554 \errmessage{This command can appear only \inenvironment\temp,
818 % vertical list for the beginning and end of each change). This command
1390 % tried to figure out what each command should do in the context
2063 % We provide the user-level command
2106 % Each font-changing command also sets the names \lsize (one size lower)
2231 %\newif\ifmarkupcommand % @command == @code.
2361 % #1 is the font command (\sl or \it), #2 is the text to slant.
2543 % For @command, @env, @file, @option quotes seem unnecessary,
2545 \let\command
[all...]
/external/bison/djgpp/
H A Ddjunpack.bat39 command.com /e:4096 /c %0 %1
50 Rem an empty fnchange.tmp even if the command failed for some reason.
/external/bison/doc/
H A Drefcard.tex511 % compile-command: "tex refcard"
/external/bison/
H A Dmaint.mk70 # when $(srcdir) is a pathological name like "....", the leading sed command
466 # To use this "command" macro, you must first define two shell variables:
907 # to a command-line "-le". The remaining arguments are file names.
1317 # Not $(AM_V_GEN) since the output of this command serves as
/external/blktrace/btreplay/doc/
H A Dbtreplay.tex40 This document presents the command line overview for
73 specify the \texttt{-a queue} command line option to \texttt{blktrace}.
242 \newpage\section{\label{sec:command-line}Command Line Options}
288 The \texttt{-h} option displays the command line options and
426 The \texttt{-h} option displays the command line options and
492 supplied on the command line.
497 When specified on the command line, all pre-bunch stall indicators will be
513 When specified on the command line, this option instructs \texttt{btreplay}
/external/blktrace/btt/doc/
H A Dbtt.tex54 command-line usage section occurs relatively late in the document (see
600 \texttt{iostat -x} command in parallel with the system as it is being
685 command at that time (either Q2D, D2C or Q2C).
835 When specified on the command line, this directs btt to calculate
978 The normal \texttt{iostat} command allows one to specify the snapshot
1020 up\_hist} specified on the command line: \texttt{up\_hist\_008,032.dat}.
/external/blktrace/doc/
H A Dblktrace.tex213 Here we see a program issuing an INQUIRY command to the CDROM device.
216 that the command completed successfully. Tracing SCSI commands can be
338 of the more arcane command line options:
345 command line argument.
401 The following masks may be passed with the \emph{-a} command line
402 option, multiple filters may be combined via multiple \emph{-a} command
410 pc & \emph{packet command} events \\ \hline
428 commands. blktrace sends the command data block as a payload
437 will help in understanding the command line options presented below.
611 \emph{u} & Elapsed value in microseconds (\emph{-t} command lin
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt_client.c2238 extern bt_status_t btif_gattc_test_command_impl(int command, btgatt_test_params_t* params);
2240 static bt_status_t btif_gattc_test_command(int command, btgatt_test_params_t* params) argument
2242 return btif_gattc_test_command_impl(command, params);
H A Dbtif_gatt_test.c217 bt_status_t btif_gattc_test_command_impl(uint16_t command, btgatt_test_params_t* params) argument
219 switch(command) {
297 ALOGE("%s: UNKNOWN TEST COMMAND 0x%02x", __FUNCTION__, command);

Completed in 1480 milliseconds

1234567891011>>