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

1 2

  /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/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/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
  /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/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/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/observer/
ObservableProperty.java 91 PARAMETERS(Type.MULTIPLE_REFERENCE),
  /prebuilts/tools/common/m2/repository/com/puppycrawl/tools/checkstyle/5.9/
checkstyle-5.9.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-glacier/1.11.18/
aws-java-sdk-glacier-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/org/checkerframework/checker-qual/2.0.0/
checker-qual-2.0.0.jar 
  /prebuilts/tools/common/m2/repository/itext/itext/2.0.8/
itext-2.0.8.jar 
  /external/guice/extensions/persist/lib/
xwork-2.0.4.jar 
hibernate3.jar 
  /prebuilts/checkstyle/
checkstyle.jar 
  /external/guice/extensions/struts2/lib/
xwork-core-2.2.1.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.4.7/
groovy-all-2.4.7.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-6.0.1_r3-robolectric-0.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.0.0_r4-robolectric-0.jar 

Completed in 806 milliseconds

1 2