HomeSort by relevance Sort by last modified time
    Searched refs:PARAMETERS (Results 1 - 25 of 51) sorted by null

1 2 3

  /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
  /system/extras/tests/bionic/libc/
run-test.sh 51 if [ -z "$PARAMETERS" ] ; then
52 PARAMETERS="$opt"
54 PARAMETERS="$PARAMETERS $opt"
93 if [ -z "$PARAMETERS" ] ; then
103 TEST="$PARAMETERS"
  /development/ndk/tests/
run-all.sh 60 if [ -z "$PARAMETERS" ] ; then
61 PARAMETERS="$opt"
63 PARAMETERS="$PARAMETERS $opt"
  /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...]
  /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/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-analyzer.sh 95 set_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"
build-host-perl.sh 78 set_parameters $PARAMETERS
build-host-yasm.sh 78 set_parameters $PARAMETERS
gen-system-symbols.sh 78 parse_params $PARAMETERS
rebuild-all-prebuilt.sh 89 SRC_DIR="$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...]
  /external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
javascripttokens.py 48 PARAMETERS = 'pa,ra,ms'
javascripttokenizer.py 128 PARAMETERS = re.compile(r'[^\)]+')
318 # Matchers for function parameters
321 # Everything else is treated as lines of parameters.
324 Matcher(PARAMETERS, Type.PARAMETERS, JavaScriptModes.PARAMETER_MODE)]}
ecmametadatapass.py 109 PARAMETERS = 'parameters'
324 self._AddContext(EcmaContext.PARAMETERS)
327 return self._PopContextType(EcmaContext.PARAMETERS)
404 EcmaContext.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);
  /ndk/
ndk-gdb 91 PARAMETERS=
274 if [ -z "$PARAMETERS" ] ; then
275 PARAMETERS="$opt"
277 PARAMETERS="$PARAMETERS $opt"
  /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...]

Completed in 564 milliseconds

1 2 3