/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
PortCommandHandlerTest.groovy | 32 static final PARAMETERS = ["11", "22", "33", "44", "1", "206"] 40 handleCommand(PARAMETERS) 63 return new Command(CommandNames.PORT, PARAMETERS)
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
CommandTest.java | 38 final String[] PARAMETERS = array("123");
39 Command command = new Command("abc", PARAMETERS);
41 assertEquals("parameters", PARAMETERS, command.getParameters());
58 * Test the Constructor method, passing in a null parameters
113 * Test that a Command object is immutable, changing the original parameters passed in to the constructor
116 final String[] PARAMETERS = { "a", "b", "c" };
117 final Command COMMAND = new Command("command", PARAMETERS);
118 PARAMETERS[2] = "xxx";
119 assertEquals("parameters", COMMAND.getParameters(), new String[] { "a", "b", "c" }); 128 String[] parameters = COMMAND.getParameters(); local [all...] |
PortCommandHandlerTest.java | 38 private static final String[] PARAMETERS = new String[] { "192", "22", "250", "44", "1", "206" };
49 final Command COMMAND = new Command(CommandNames.PORT, PARAMETERS);
66 * Test the handleCommand() method, when not enough parameters have been specified
77 InetAddress host = PortCommandHandler.parseHost(PARAMETERS);
85 int portNumber = PortCommandHandler.parsePortNumber(PARAMETERS);
104 * Test the parseHost() method, passing in a String[] with not enough parameters
132 * Test the parsePortNumber() method, passing in a String[] with not enough parameters
|
/development/ndk/tests/ |
run-all.sh | 60 if [ -z "$PARAMETERS" ] ; then 61 PARAMETERS="$opt" 63 PARAMETERS="$PARAMETERS $opt"
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
DOMConfigurationImpl.java | 35 private static final Map<String, Parameter> PARAMETERS 43 * parameters: 51 * Setting these parameters to another value shall revert the canonical 54 PARAMETERS.put("canonical-form", new FixedParameter(false)); 60 PARAMETERS.put("cdata-sections", new BooleanParameter() { 72 PARAMETERS.put("check-character-normalization", new FixedParameter(false)); 77 PARAMETERS.put("comments", new BooleanParameter() { 90 PARAMETERS.put("datatype-normalization", new BooleanParameter() { 108 PARAMETERS.put("element-content-whitespace", new FixedParameter(true)); 113 PARAMETERS.put("entities", new BooleanParameter() [all...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
CommandTest.java | 40 final String[] PARAMETERS = array("123");
41 Command command = new Command("abc", PARAMETERS);
43 assertEquals("parameters", PARAMETERS, command.getParameters());
54 assertEquals("parameters String[]", PARAMETERS_ARRAY, command.getParameters());
71 * Test the Constructor method, passing in a null parameters
136 * Test that a Command object is immutable, changing the original parameters passed in to the constructor
139 final String[] PARAMETERS = {"a", "b", "c"};
140 final Command COMMAND = new Command("command", PARAMETERS);
141 PARAMETERS[2] = "xxx"; 151 String[] parameters = COMMAND.getParameters(); local [all...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/ |
PortCommandHandlerTest.java | 33 private static final String[] PARAMETERS = new String[]{"11", "22", "33", "44", "1", "206"};
44 final Command COMMAND = new Command(CommandNames.PORT, PARAMETERS);
61 * Test the handleCommand() method, when not enough parameters have been specified
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/util/ |
PortParserTest.groovy | 32 static final String[] PARAMETERS = ["192", "22", "250", "44", "1", "206"]
85 def client = PortParser.parseHostAndPort(PARAMETERS)
|
/frameworks/compile/libbcc/tests/debuginfo/ |
build_test_apk.sh | 113 if [ -z "$PARAMETERS" ] ; then 114 PARAMETERS="$opt" 116 PARAMETERS="$PARAMETERS $opt" 128 echo "Required Parameters:" 134 echo "Optional Parameters (reasonable defaults are used if not specified)" 145 # Verify required parameters are non-empty 154 # Compute activity, appname, and java package, if not specified via parameters 172 echo " Check parameters and try again."
|
/ndk/build/tools/ |
patch-sources.sh | 61 parse_parameters $PARAMETERS
|
build-ccache.sh | 56 echo "ERROR: Too many parameters. See --help for usage." 73 set_parameters $PARAMETERS
|
gen-toolchain-wrapper.sh | 101 DST_DIR="$PARAMETERS"
|
gen-system-symbols.sh | 77 parse_params $PARAMETERS
|
prebuilt-common.sh | 400 # correspond to the parameters list and the program description 445 PARAMETERS="" 451 if [ -z "$PARAMETERS" ] ; then 452 PARAMETERS="$1" 454 PARAMETERS="$PARAMETERS $1" [all...] |
build-gdbserver.sh | 121 set_parameters $PARAMETERS
|
dev-platform-import.sh | 86 if [ -z "$PARAMETERS" ] ; then 94 ANDROID_PRODUCT_OUT=$PARAMETERS
|
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/ |
MediaTypeTest.java | 114 private static final ImmutableListMultimap<String, String> PARAMETERS = 118 assertEquals(ImmutableListMultimap.of(), MediaType.parse("text/plain").parameters()); method 120 MediaType.parse("application/atom+xml; charset=utf-8").parameters()); method 121 assertEquals(PARAMETERS, 122 MediaType.parse("application/atom+xml; a=1; a=2; b=3").parameters()); 134 MediaType.parse("text/plain").withParameters(PARAMETERS)); 136 MediaType.parse("text/plain; a=1; a=2; b=3").withParameters(PARAMETERS)); 141 ImmutableListMultimap<String, String> parameters = local 144 mediaType.withParameters(parameters);
|
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/ |
javascripttokenizer.py | 131 PARAMETERS = re.compile(r'[^\)]+') 426 # Matchers for function parameters 429 # specially. Everything else is treated as lines of parameters. 432 Matcher(cls.PARAMETERS, Type.PARAMETERS,
|
javascripttokens.py | 48 PARAMETERS = 'pa,ra,ms'
|
ecmametadatapass.py | 109 PARAMETERS = 'parameters' 371 self._AddContext(EcmaContext.PARAMETERS) 374 return self._PopContextType(EcmaContext.PARAMETERS) 455 EcmaContext.PARAMETERS,
|
indentation.py | 280 elif token.metadata.context.type != Context.PARAMETERS: 287 elif token_type == Type.PARAMETERS and token.string.endswith(','): 419 elif token.type == Type.PARAMETERS: 472 Type.PARAMETERS,
|
/external/guava/guava-tests/test/com/google/common/net/ |
MediaTypeTest.java | 72 .withParameters(constant.parameters())); 174 private static final ImmutableListMultimap<String, String> PARAMETERS = 178 assertEquals(ImmutableListMultimap.of(), MediaType.parse("text/plain").parameters()); 180 MediaType.parse("application/atom+xml; charset=utf-8").parameters()); 181 assertEquals(PARAMETERS, 182 MediaType.parse("application/atom+xml; a=1; a=2; b=3").parameters()); 194 MediaType.parse("text/plain").withParameters(PARAMETERS)); 196 MediaType.parse("text/plain; a=1; a=2; b=3").withParameters(PARAMETERS)); 201 ImmutableListMultimap<String, String> parameters = 204 mediaType.withParameters(parameters); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/ |
build-lucid-multilib-toolchain.sh | 244 PARAMETERS= 310 if [ -z "$PARAMETERS" ]; then 311 PARAMETERS=$opt 313 PARAMETERS="$PARAMETERS $opt" 395 if [ -z "$PARAMETERS" ] ; then 429 set_parameters $PARAMETERS [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/ |
build-precise-multilib-toolchain.sh | 246 PARAMETERS= 312 if [ -z "$PARAMETERS" ]; then 313 PARAMETERS=$opt 315 PARAMETERS="$PARAMETERS $opt" 397 if [ -z "$PARAMETERS" ] ; then 431 set_parameters $PARAMETERS [all...] |
/external/curl/tests/ |
stunnel.pem | 5 # openssl with the parameters listed below up to the line 139 -----BEGIN DH PARAMETERS----- 143 -----END DH PARAMETERS-----
|