Searched defs:check (Results 1 - 25 of 496) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/tools/native2ascii/
H A DNative2AsciiTests.sh41 check() { function
69 check 4630463 $TESTSRC/A2N_4630463.expected x.out
84 check 4636448 $TESTSRC/N2A_4636448.expected x.in
93 check 4630971 $TESTSRC/A2N_4630971 x.out
101 check 4701617 $TESTSRC/A2N_4701617.expected x.out
123 check 4710890 $TESTSRC/test3 x.out
128 check 4701617 $TESTSRC/A2N_6247817 x.out
/openjdk7/langtools/test/tools/javac/javazip/
H A DTest.sh28 # @summary check that source files inside zip files on the class path are ignored
62 check() { function
92 check ok "${TESTJAVA}${FS}bin${FS}jar" cf "${SCR}${FS}good.jar" -C "${TESTSRC}${FS}good" B.java
93 check ok "${TESTJAVA}${FS}bin${FS}jar" cf "${SCR}${FS}good.zip" -C "${TESTSRC}${FS}good" B.java
94 check ok "${TESTJAVA}${FS}bin${FS}jar" cf "${SCR}${FS}bad.jar" -C "${TESTSRC}${FS}bad" B.java
95 check ok "${TESTJAVA}${FS}bin${FS}jar" cf "${SCR}${FS}bad.zip" -C "${TESTSRC}${FS}bad" B.java
98 check ok "${TESTJAVA}${FS}bin${FS}javac" ${TESTTOOLVMOPTS} -d ${TC} "${TESTSRC}${FS}A.java" "${TESTSRC}${FS}good${FS}B.java"
99 check err "${TESTJAVA}${FS}bin${FS}javac" ${TESTTOOLVMOPTS} -d ${TC} "${TESTSRC}${FS}A.java" "${TESTSRC}${FS}bad${FS}B.java"
102 check ok "${TESTJAVA}${FS}bin${FS}javac" ${TESTTOOLVMOPTS} -d ${TC} -classpath "${TESTSRC}${FS}good" "${TESTSRC}${FS}A.java"
103 check o
[all...]
/openjdk7/langtools/test/tools/javac/enum/
H A DT5081785.java38 public void check() { method in class:A
H A DT5081785a.java25 public A check() { method in class:A
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DBug6356571.java37 void check() { method in class:Bug6356571
45 new Bug6356571().check();
/openjdk7/langtools/test/tools/javac/implicitThis/
H A DWhichImplicitThis3.java35 void check() { method in class:WhichImplicitThis3
37 public void check() {
43 public void check() {
44 new I2().check(); // which outer does I2 get?
47 new I3().check();
50 new WhichImplicitThis3().check();
H A DWhichImplicitThis4.java35 void check() { method in class:WhichImplicitThis4
43 public void check() {
53 new I3().check();
56 new WhichImplicitThis4().check();
/openjdk7/jdk/test/sun/security/krb5/ktab/
H A DFileKeyTab.java38 check(name);
39 check("FILE:" + name);
43 check(name);
44 check("FILE:" + name);
48 check("FILE:/" + name);
51 static void check(String file) throws Exception { method in class:FileKeyTab
/openjdk7/jdk/test/java/io/PushbackReader/
H A DSkip.java26 * @summary check skip method after pushing data back
44 check(pr.read(), 0);
47 check(pr.read(), 2);
52 check(pr.read(), 5);
53 check(pr.read(), 6);
58 check(pr.read(), 6);
59 check(pr.read(), 7);
62 check(pr.read(), 11);
65 private static void check (int i, int j) { method in class:Skip
/openjdk7/jdk/test/java/lang/Integer/
H A DParsingTest.java50 check("+100", +100);
51 check("-100", -100);
53 check("+0", 0);
54 check("-0", 0);
55 check("+00000", 0);
56 check("-00000", 0);
58 check("0", 0);
59 check("1", 1);
60 check("9", 9);
77 private static void check(Strin method in class:ParsingTest
[all...]
/openjdk7/jdk/test/java/lang/Long/
H A DParsingTest.java50 check("+100", +100L);
51 check("-100", -100L);
53 check("+0", 0L);
54 check("-0", 0L);
55 check("+00000", 0L);
56 check("-00000", 0L);
58 check("0", 0L);
59 check("1", 1L);
60 check("9", 9L);
77 private static void check(Strin method in class:ParsingTest
[all...]
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DChangingAddress.java36 static void check(DatagramSocket ds, DatagramChannel dc) { method in class:ChangingAddress
57 check(ds, dc);
61 check(ds, dc);
65 check(ds, dc);
70 check(ds, dc);
74 check(ds, dc);
/openjdk7/jdk/test/sun/security/pkcs12/
H A DBug6415637.java39 check(WITH_NULL);
40 check(WITHOUT_NULL);
43 private static void check(String encodedBlob) throws Exception { method in class:Bug6415637
/openjdk7/jdk/test/sun/security/util/BitArray/
H A DNamedBitList.java52 check(new DerValue(x1.getExtensionValue()).getUnalignedBitString().length(), 3);
55 check(new DerValue(x2.getExtensionValue()).getUnalignedBitString().length(), 3);
60 check(new DerValue(out.toByteArray()).getUnalignedBitString().length(), 3);
74 check(v2.getUnalignedBitString().length(), 3);
78 check(ba.length(), 3);
80 check(ba.length(), 1);
85 check(ba.length(), 10);
86 check(ba.toByteArray().length, 2);
88 check(ba.length(), 8);
89 check(b
101 static void check(int la, int lb) throws Exception { method in class:NamedBitList
[all...]
/openjdk7/langtools/test/tools/javac/
H A DAmbig3.java34 public void check(T val){ method in class:Test
35 System.out.println("Second check method being called");
37 public E check(E val){ method in class:Test
38 System.out.println("First check method being called");
48 tRef.check("");
H A DHexFloatLiterals.java32 public static void check(float a, float b) { method in class:HexFloatLiterals
35 public static void check(double a, double b) { method in class:HexFloatLiterals
39 check(-0X.003p12d, Double.parseDouble("-0X.003p12d"));
40 check(-0x.003P12F, Float.parseFloat("-0x.003P12F"));
41 check(0x.006p11D, Double.parseDouble("0x.006p11D"));
42 check(0X.00cP10D, Double.parseDouble("0X.00cP10D"));
43 check(-0x.018P9, Double.parseDouble("-0x.018P9"));
44 check(0x.018P9D, Double.parseDouble("0x.018P9D"));
45 check(0X.018P9D, Double.parseDouble("0X.018P9D"));
46 check(
[all...]
H A DNameCollision2.java45 void check() { method in class:NameCollision2
51 new NameCollision2().check();
/openjdk7/langtools/test/tools/javac/ClassLiterals/
H A DLiteralInterfaceImpl.java38 private static void check(Class c1, Class c2) throws Exception{ method in class:LiteralInterfaceImpl
45 check(c1, Object.class);
46 check(c2, Integer.class);
48 check(foo, Object.class);
49 check(bar, String.class);
50 check(baz, Integer.class);
54 // check(quux, J.class);
56 check(quux, LiteralInterface_2.J.class);
59 check(o.quem, Float.class);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbKdcRep.java37 static void check( method in class:KrbKdcRep
/openjdk7/jdk/test/java/security/cert/CertPathValidatorException/
H A DSerial.java72 check(!cpve1.getMessage().equals(cpve2.getMessage()),
74 check(!cpve1.getCause().getMessage().equals(cpve2.getCause().getMessage()),
76 check(!cpve1.getCertPath().equals(cpve2.getCertPath()),
78 check(cpve1.getIndex() != cpve2.getIndex(),
80 check(cpve1.getReason() != cpve2.getReason(),
89 check(!cpve1.getMessage().equals(cpve2.getMessage()),
91 check(!cpve1.getCause().getMessage().equals(cpve2.getCause().getMessage()),
93 check(!cpve1.getCertPath().equals(cpve2.getCertPath()),
95 check(cpve1.getIndex() != cpve2.getIndex(),
98 check(cpve
107 private static void check(boolean expr, String message) { method in class:Serial
[all...]
/openjdk7/jdk/test/javax/management/openmbean/
H A DIsValueTest.java57 check(ctOld.isValue(cdNew), "isValue: " + ctOld + "[" + cdNew + "]");
60 check(!ctNew.isValue(cdOld), "isValue: " + ctNew + "[" + cdOld + "]");
73 check(true, "CompositeDataSupport containing CompositeDataSupport");
76 check(false, "CompositeDataSupport containing CompositeDataSupport: " + e);
89 check(false, "CompositeDataSupport containing old did not get exception");
91 check(true, "CompositeDataSupport containing old got expected exception: " + e);
101 check(true, "TabularDataSupport adding extended CompositeData");
104 check(false, "TabularDataSupport adding extended CompositeData: " + e);
121 check(true, "CompositeDataSupport adding extended TabularData");
124 check(fals
131 private static void check(boolean value, String what) { method in class:IsValueTest
[all...]
/openjdk7/jdk/test/javax/swing/plaf/nimbus/
H A DTest6919629.java46 t.check();
77 void check() { method in class:Test6919629
/openjdk7/jdk/test/sun/misc/Encode/
H A DDecodeBuffer.java45 check (uuD, encoded, originalText);
50 check (uuD, encoded, originalText);
55 check (uuD, encoded, originalText);
68 check (uuD, s1, s2);
79 check (uuD, s1, s2);
82 public static void check (UUDecoder uuD, String s, String original) throws Exception { method in class:DecodeBuffer
/openjdk7/langtools/test/tools/javac/api/6431435/
H A DT6431435.java49 ok &= check("parse", task.parse(), 1); // A.java
50 ok &= check("analyze", task.analyze(), 3); // A, Foo, p.B
51 ok &= check("generate", task.generate(), 5); // A, Foo, Foo$Baz, Foo$1, p.B
56 private static boolean check(String name, Iterable<?> iter, int expect) { method in class:T6431435
/openjdk7/langtools/test/tools/javac/versions/
H A Dcheck.sh28 # @run shell check.sh
44 check() { function
50 check 48.0 -source 1.4
52 check 49.0 -source 1.4 -target 1.5
53 check 49.0 -source 1.5 -target 1.5
55 check 50.0 -source 1.4 -target 1.6
56 check 50.0 -source 1.5 -target 1.6
57 check 50.0 -source 1.6 -target 1.6
58 check 50.0 -source 1.6 -target 6
59 check 50.
[all...]

Completed in 250 milliseconds

1234567891011>>