Searched defs:input (Results 1 - 25 of 309) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/security/krb5/auto/
H A DAction.java31 byte[] run(Context s, byte[] input) throws Exception; argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DInputVerifier.java39 * attach an instance of their subclass to the <code>JComponent</code> whose input they
41 * that requests it, the input verifier's <code>shouldYieldFocus</code> method is
59 * // string "pass" as input, and will allow focus to advance out of it
80 * public boolean verify(JComponent input) {
81 * JTextField tf = (JTextField) input;
101 * Checks whether the JComponent's input is valid. This method should
103 * of the argument's input.
105 * @param input the JComponent to verify
112 public abstract boolean verify(JComponent input); argument
116 * Calls <code>verify(input)</cod
131 shouldYieldFocus(JComponent input) argument
[all...]
/openjdk7/jdk/test/java/lang/Math/
H A DRint.java36 static int testRintCase(double input, double expected) { argument
39 failures += Tests.test("Math.rint", input, Math.rint(input), expected);
40 failures += Tests.test("Math.rint", -input, Math.rint(-input), -expected);
42 input, StrictMath.rint(input), expected);
43 failures += Tests.test("StrictMath.rint", -input,
44 StrictMath.rint(-input), -expected);
H A DCeilAndFloorTests.java34 private static int testCeilCase(double input, double expected) { argument
36 failures += Tests.test("Math.ceil", input, Math.ceil(input), expected);
37 failures += Tests.test("StrictMath.ceil", input, StrictMath.ceil(input), expected);
41 private static int testFloorCase(double input, double expected) { argument
43 failures += Tests.test("Math.floor", input, Math.floor(input), expected);
44 failures += Tests.test("StrictMath.floor", input, StrictMath.floor(input), expecte
[all...]
H A DCubeRootTests.java43 static int testCubeRootCase(double input, double expected) { argument
46 double minus_input = -input;
49 failures+=Tests.test("Math.cbrt(double)", input,
50 Math.cbrt(input), expected);
53 failures+=Tests.test("StrictMath.cbrt(double)", input,
54 StrictMath.cbrt(input), expected);
H A DRoundTests.java62 private static int testNearHalfCases(double input, double expected) { argument
65 failures += Tests.test("Math.round", input, Math.round(input), expected);
66 failures += Tests.test("StrictMath.round", input, StrictMath.round(input), expected);
90 private static int testNearHalfCases(float input, float expected) { argument
93 failures += Tests.test("Math.round", input, Math.round(input), expected);
94 failures += Tests.test("StrictMath.round", input, StrictMath.round(input), expecte
[all...]
H A DTanTests.java34 static int testTanCase(double input, double expected, double ulps) { argument
36 failures += Tests.testUlpDiff("StrictMath.tan(double, double)", input,
37 StrictMath.tan(input), expected, ulps);
38 failures += Tests.testUlpDiff("Math.tan(double, double)", input,
39 Math.tan(input), expected, ulps);
/openjdk7/jdk/test/java/lang/StrictMath/
H A DCubeRootTests.java45 static int testCubeRootCase(double input, double expected) { argument
48 double minus_input = -input;
51 failures+=Tests.test("StrictMath.cbrt(double)", input,
52 StrictMath.cbrt(input), expected);
H A DExpm1Tests.java45 static int testExpm1Case(double input, double expected) { argument
46 return Tests.test("StrictMath.expm1(double)", input,
47 StrictMath.expm1(input), expected);
H A DLog10Tests.java46 static int testLog10Case(double input, double expected) { argument
47 return Tests.test("StrictMath.log10(double)", input,
48 StrictMath.log10(input), expected);
H A DLog1pTests.java45 static int testLog1pCase(double input, double expected) { argument
46 return Tests.test("StrictMath.log1p(double)", input,
47 StrictMath.log1p(input), expected);
H A DTests.java35 double input,
40 "\tFor input " + input + "\t(" + Double.toHexString(input) + ")\n" +
53 "\tFor input " + input1 + "\t(" + Double.toHexString(input1) + "), " +
34 test(String testName, double input, double result, double expected) argument
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DInvokeHandler.java61 * @param input The <code>InputStream</code> containing the marshalled arguments.
69 OutputStream _invoke(String method, InputStream input, argument
/openjdk7/jdk/test/java/nio/charset/coders/
H A DSurrogates.java37 static char[] input; field in class:Surrogates
48 input = sb.toString().toCharArray();
52 osw.write(input);
64 for (int i = 0; i < input.length; i += 7)
65 osw.write(input, i, Math.min(input.length - i, 7));
67 osw.write(input, 0, 1);
/openjdk7/jdk/test/sun/nio/cs/
H A DJISAutoDetectTest.java37 byte[] input; field in class:JISAutoDetectTest.TestData
61 ncr = autoDetect.decode(ByteBuffer.wrap(data[i].input),
64 mcr = dec.decode(ByteBuffer.wrap(data[i].input),
96 data[i].input = new byte[] { (byte)'C', (byte)'o', (byte)'p', (byte)'y',
105 data[i].input = new byte[] { (byte)0xbb, (byte)0xdd, (byte)0xcf, (byte)0xb2,
114 data[i].input = new byte[] { (byte)0xbb, (byte)0xdd, (byte)0xcf, (byte)0xb2,
122 data[i].input = new byte[] { (byte)0xbb, (byte)0xdd, (byte)0xcf, (byte)0xb2,
130 data[i].input = new byte[] { (byte)0x8f, (byte)0xa1, (byte)0xaa };
136 data[i].input = new byte[] { (byte)0xa4, (byte)0xd2, (byte)0xa4, (byte)0xe9,
143 data[i].input
[all...]
H A DTestUTF8BOM.java40 private static void testDecode(String expected, byte[] input) argument
43 String out = new String(input, "utf8");
51 bf.put(input).flip();
/openjdk7/jdk/test/sun/security/krb5/canonicalize/
H A DTest.java57 static void check(String input, String output) throws Exception { argument
58 System.out.println(input + " -> " + output);
59 PrincipalName pn = new PrincipalName("host/"+input,
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DAnyHolder.java78 * Reads from <code>input</code> and initalizes the value in the Holder
81 * @param input the InputStream containing CDR formatted data from the wire.
83 public void _read(InputStream input) { argument
84 value = input.read_any();
H A DBooleanHolder.java79 * Reads unmarshalled data from <code>input</code> and assigns it to this
82 * @param input the <code>InputStream</code> object containing
85 public void _read(InputStream input) { argument
86 value = input.read_boolean();
H A DByteHolder.java80 * Reads from <code>input</code> and initalizes the value in
84 * @param input the InputStream containing CDR formatted data from the wire.
86 public void _read(InputStream input) { argument
87 value = input.read_octet();
H A DCharHolder.java80 * Reads from <code>input</code> and initalizes the value in
84 * @param input the InputStream containing CDR formatted data from the wire
86 public void _read(InputStream input) { argument
87 value = input.read_char();
H A DDoubleHolder.java80 * Read a double value from the input stream and store it in the
83 * @param input the <code>InputStream</code> to read from.
85 public void _read(InputStream input) { argument
86 value = input.read_double();
H A DFixedHolder.java69 * Read a fixed point value from the input stream and store it in
72 * @param input the <code>InputStream</code> to read from.
74 public void _read(InputStream input) { argument
75 value = input.read_fixed();
H A DFloatHolder.java79 * Read a float from an input stream and initialize the value
82 * @param input the <code>InputStream</code> to read from.
84 public void _read(InputStream input) { argument
85 value = input.read_float();
H A DIntHolder.java80 * Reads unmarshalled data from <code>input</code> and assigns it to
83 * @param input the <code>InputStream</code> object containing CDR
86 public void _read(InputStream input) { argument
87 value = input.read_long();

Completed in 1000 milliseconds

1234567891011>>