/external/owasp/sanitizer/tools/findbugs/doc/manual/ |
annotations.html | 8 </p><div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.CheckForNull</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Field, Method, Parameter 12 </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.CheckReturnValue</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Method, Constructor 13 <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p> 14 <span class="command"><strong>priority:</strong></span>The priority of the warning (HIGH, MEDIUM, LOW, IGNORE). Default value:MEDIUM. 16 <span class="command"><strong>explanation:</strong></span>A textual explaination of why the return value should be checked. Default value:"". 19 </p></dd><dt><span class="term"><span class="command"><strong>edu.umd.cs.findbugs.annotations.DefaultAnnotation</strong></span></span></dt><dd><span class="command"><strong>[Target]</strong></span> Type, Package 20 <div class="variablelist"><dl><dt><span class="term"><span class="command"><strong>[Parameter]</strong></span></span></dt><dd><p [all...] |
/external/libnfc-nci/src/nfc/nci/ |
nci_hmsgs.c | 39 ** Description compose and send CORE RESET command to command queue 71 ** Description compose and send CORE INIT command to command queue 102 ** Description compose and send CORE GET_CONFIG command to command queue 135 ** Description compose and send CORE SET_CONFIG command to command queue 188 ** Description compose and send CORE CONN_CREATE command to command queu [all...] |
/frameworks/native/opengl/tools/glgen2/registry/ |
egl.xml | [all...] |
/external/clang/lib/AST/ |
CommentSema.cpp | 62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command, 64 Command->setArgs(Args); 67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command, 69 Command->setParagraph(Paragraph); 70 checkBlockCommandEmptyParagraph(Command); 71 checkBlockCommandDuplicate(Command); 75 checkReturnsCommand(Command); 76 checkDeprecatedCommand(Command); 85 ParamCommandComment *Command = 90 Diag(Command->getLocation() [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
SuspendCountTest.java | 38 * JDWP Unit test for ThreadReference.SuspendCount command. 52 * This testcase exercises ThreadReference.SuspendCount command. 56 * check that ThreadReference.SuspendCount command returns 58 * <BR>Then the test suspends all debuggee by VirtualMachine.Suspend command 59 * and check that ThreadReference.SuspendCount command returns 1 value 61 * <BR>Then the test resumes all debuggee by VirtualMachine.Resume command 62 * and check that ThreadReference.SuspendCount command returns 0 value 137 logWriter.println("==> Send ThreadReference.SuspendCount command..."); 143 if ( ! checkReplyPacketWithoutFail(reply, "ThreadReference.SuspendCount command") ) { 147 logWriter.println("==> ThreadReference.SuspendCount command returns suspendCount = " + suspendCount) [all...] |
/external/deqp/scripts/opengl/ |
gen_null_render_context.py | 55 def commandDummyImpl (command): 56 if command.name in OVERRIDE_FUNCS: 64 returnType = command.type, 65 commandName = command.name, 66 paramDecls = commandParams(command), 67 body = ''.join("\tDE_UNREF(%s);\n" % p.name for p in command.params), 68 maybeReturn = "\n\treturn (%s)0;" % command.type if command.type != 'void' else "") 70 def commandInitStatement (command): 71 return "gl->%s\t= %s;" % (getFunctionMemberName(command.name), command.name [all...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/ |
AlloCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
20 import org.mockftpserver.core.command.*;
21 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
39 private Command command1;
40 private Command command2;
75 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("123 R ")), session);
89 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("xx")), session);
102 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("123 R xx")), session);
113 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
119 command1 = new Command(CommandNames.ALLO, array(Integer.toString(BYTES1))); [all...] |
RetrCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
21 import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
22 import org.mockftpserver.core.command.Command;
23 import org.mockftpserver.core.command.CommandNames;
24 import org.mockftpserver.core.command.ReplyCodes;
108 Command command = new Command(CommandNames.RETR, array(FILENAME1));
local 109 commandHandler.handleCommand(command, session); [all...] |
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/ |
Command.java | 16 package org.mockftpserver.core.command;
23 * Represents a command received from an FTP client, containing a command name and parameters.
30 public final class Command {
36 * Construct a new immutable instance with the specified command name and parameters
37 * @param name - the command name; may not be null
38 * @param parameters - the command parameters; may be empty; may not benull
40 public Command(String name, String[] parameters) {
75 * @return the parameter value as a String, or null if this Command does not have a parameter for that index
88 if (obj == null || !(obj instanceof Command)) {
[all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
PortCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
22 import org.mockftpserver.core.command.Command;
23 import org.mockftpserver.core.command.CommandNames;
24 import org.mockftpserver.core.command.ReplyCodes;
26 import org.mockftpserver.stub.command.PortCommandHandler;
49 final Command COMMAND = new Command(CommandNames.PORT, PARAMETERS);
56 commandHandler.handleCommand(COMMAND, session); [all...] |
RetrCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
20 import org.mockftpserver.core.command.Command;
21 import org.mockftpserver.core.command.CommandNames;
22 import org.mockftpserver.core.command.ReplyCodes;
24 import org.mockftpserver.stub.command.RetrCommandHandler;
107 Command command = new Command(CommandNames.RETR, array(FILENAME1));
local 108 commandHandler.handleCommand(command, session); [all...] |
/external/iputils/doc/ |
pg3.sgml | 17 <command>source ipg</command> 20 <command>pg</command> 23 <command>pgset</command> 24 <arg choice="req"><replaceable/COMMAND/</arg> 30 <command/ipg/ is not a program, it is script which should be sourced 31 to <command/bash/. When sourced it loads module <filename/pg3/ and 33 are <command/pg/ to start packet injection and to get the results of run [all...] |
/system/bt/tools/hci/ |
main.c | 36 { "help", "<command> - shows help text for <command>.", help }, 44 printf("No help command specified.\n"); 48 const command_t *command = find_command(argv[0]); local 49 if (!command) { 50 printf("No command named '%s'.\n", argv[0]); 54 printf("%s %s\n", argv[0], command->help); 97 packet[2] = 0xF1; // HCI command packet length. 129 const command_t *command = find_command(argv[1]); local 130 if (!command) { [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
AbstractTrackingCommandHandler.java | 16 package org.mockftpserver.core.command;
30 * objects corresponding to each invocation of the command handler, and provide helper methods for subclasses.
44 * Handle the specified command for the session. This method is declared to throw Exception,
48 * @param command - the Command to be handled
49 * @param session - the session on which the Command was submitted
51 * @throws AssertFailedException - if the command or session is null
52 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command,
[all...] |
/development/ide/xcode/SampleCode/English.lproj/main.nib/ |
objects.xib | 10 <ostype name="command">frnt</ostype> 15 <ostype name="command">sall</ostype> 25 <ostype name="command">undo</ostype> 30 <ostype name="command">redo</ostype> 38 <ostype name="command">cut </ostype> 43 <ostype name="command">copy</ostype> 48 <ostype name="command">past</ostype> 52 <ostype name="command">clea</ostype> 60 <ostype name="command">chrp</ostype> 71 <ostype name="command">new </ostype [all...] |
/development/ide/xcode/animatorTest/English.lproj/main.nib/ |
objects.xib | 19 <ostype name="command">abou</ostype> 33 <ostype name="command">new </ostype> 38 <ostype name="command">open</ostype> 46 <ostype name="command">clos</ostype> 51 <ostype name="command">save</ostype> 56 <ostype name="command">svas</ostype> 61 <ostype name="command">rvrt</ostype> 69 <ostype name="command">page</ostype> 74 <ostype name="command">prnt</ostype> 87 <ostype name="command">undo</ostype [all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/ |
StubFtpServer.java | 18 import org.mockftpserver.core.command.CommandHandler;
19 import org.mockftpserver.core.command.CommandNames;
20 import org.mockftpserver.core.command.ConnectCommandHandler;
21 import org.mockftpserver.core.command.ReplyTextBundleUtil;
22 import org.mockftpserver.core.command.UnsupportedCommandHandler;
24 import org.mockftpserver.stub.command.*;
33 * <b>StubFtpServer</b> works out of the box with default command handlers that return
35 * The command handler for any command can be easily configured to return custom data
38 * failure scenarios. The command handlers can also be interrogated to verify command [all...] |
/external/expat/doc/ |
xmlwf.sgml | 56 <command>&dhpackage;</command> 82 <command>&dhpackage;</command> uses the Expat library to 88 If you do not specify any files on the command-line, and you 89 have a recent version of <command>&dhpackage;</command>, the 108 <command>&dhpackage;</command> does not currently 133 <command>&dhpackage;</command> is a non-validating parser - [all...] |
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
wpa_supplicant.sgml | 14 <command>wpa_supplicant</command> 52 <para><command>wpa_supplicant</command> is an implementation of 59 <para><command>wpa_supplicant</command> is designed to be a 62 connection. <command>wpa_supplicant</command> supports separate 64 <command>wpa_cli</command>, is included wit [all...] |
/external/llvm/utils/lit/lit/ |
ShUtil.py | 5 from lit.ShCommands import Command, Pipeline, Seq 191 raise ValueError("empty command!") 204 # If this is an argument, just add it to the current command. 221 return Command(args, redirects) 291 Pipeline([Command(['echo', 'hello'], [])], False)) 293 Pipeline([Command(['echo', ''], [])], False)) 295 Pipeline([Command(['echo', '-DFOO=a'], [])], False)) 297 Pipeline([Command(['echo', '-DFOO=a'], [])], False)) 301 Pipeline([Command(['echo', 'hello'], 304 Pipeline([Command(['echo', 'hello'], [(('>',), 'c') [all...] |
/device/google/accessory/arduino/USB_Host_Shield/ |
Max_LCD.cpp | 139 command(LCD_FUNCTIONSET | _displayfunction); 151 command(LCD_ENTRYMODESET | _displaymode); 157 command(LCD_CLEARDISPLAY); // clear display, set cursor position to zero 158 delayMicroseconds(2000); // this command takes a long time! 163 command(LCD_RETURNHOME); // set cursor position to zero 164 delayMicroseconds(2000); // this command takes a long time! 174 command(LCD_SETDDRAMADDR | (col + row_offsets[row])); 180 command(LCD_DISPLAYCONTROL | _displaycontrol); 184 command(LCD_DISPLAYCONTROL | _displaycontrol); 190 command(LCD_DISPLAYCONTROL | _displaycontrol) 252 inline void Max_LCD::command(uint8_t value) { function in class:Max_LCD [all...] |
/external/antlr/antlr-3.4/runtime/C/vsrulefiles/ |
antlr3lexer.rules | 22 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 33 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 41 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 50 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 59 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 68 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 76 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 85 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 94 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 104 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options [all...] |
antlr3lexerandparser.rules | 23 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 34 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 42 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 51 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 60 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 69 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 77 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 86 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 95 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 105 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options [all...] |
antlr3parser.rules | 22 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 33 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 41 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 50 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 59 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 68 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 76 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 85 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 94 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 104 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options [all...] |
antlr3treeparser.rules | 22 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 33 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 41 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 50 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 59 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 68 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 76 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 85 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 94 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options" 104 HelpURL="http://www.antlr.org/wiki/display/ANTLR3/Command+line+options [all...] |