Searched refs:got (Results 76 - 100 of 108) sorted by relevance

12345

/openjdk10/jdk/test/java/util/Formatter/
H A DBasicLong.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicInt.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicShort.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicLongObject.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicShortObject.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicIntObject.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicDoubleObject.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicFloatObject.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicDateTime.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicDouble.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicFloat.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
H A DBasicBigDecimal.java93 String got = new String(ba);
95 fail(fs, exp, got);
96 ck(fs, exp, got);
/openjdk10/jdk/test/java/io/RandomAccessFile/
H A DParameterCheck.java52 int[] got = new int[numCases];
/openjdk10/jdk/test/java/util/Optional/
H A DBasic.java111 Boolean got = empty.get();
118 Boolean got = empty.orElseGet(null);
125 Boolean got = empty.orElseThrow(null);
132 Boolean got = empty.orElseThrow(ObscureException::new);
/openjdk10/jdk/test/java/text/Format/DateFormat/
H A DDateFormatRegression.java156 Date got = fmt.parse(s);
157 logln(s + " -> " + got + "; exp " + exp);
158 if (!got.equals(exp)) errln("set2DigitYearStart broken");
754 errln("Parse failed, got " + d2 +
793 errln("Parse failed, got Exception " + e);
939 int got = 2;
958 got = 1;
960 got = 0;
964 if (got != DATA[i+1] || e != null) {
966 (e != null ? e.toString() : GOT[got]));
[all...]
/openjdk10/jdk/test/java/util/logging/
H A DTestConfigurationListeners.java256 final long got = listener.count.longValue();
257 if (got != value) {
258 throw new RuntimeException(listener.name + " expected " + value +", got " + got);
/openjdk10/langtools/test/jdk/jshell/
H A DReplaceTest.java88 private <T extends Snippet> void identityMatch(Stream<T> got, T expected) { argument
89 Iterator<T> it = got.iterator();
H A DReplToolTesting.java315 "Expected a goodbye, but got: " + cos);
316 assertTrue(ceos.isEmpty(), "Expected empty command error output, got: " + ceos);
317 assertTrue(uos.isEmpty(), "Expected empty user output, got: " + uos);
318 assertTrue(ueos.isEmpty(), "Expected empty user error output, got: " + ueos);
482 String got = getCommandOutput();
483 check.accept(got);
507 public void assertOutput(String got, String expected, String display) { argument
509 assertEquals(got, expected, display + ".\n");
/openjdk10/jdk/src/java.base/share/native/libzip/zlib/
H A Dinflate.c1406 unsigned got;
1409 got = *have;
1411 while (next < len && got < 4) {
1412 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff))
1413 got++;
1415 got = 0;
1417 got = 4 - got;
1420 *have = got;
/openjdk10/jdk/test/java/io/File/
H A DGetXSpace.java83 static void fail(String p, long exp, String cmp, long got) { argument
84 String s = String.format("'%s': %d %s %d", p, exp, cmp, got);
/openjdk10/jdk/test/java/net/Inet6Address/serialize/
H A DInet6AddressSerializationTest.java486 + expectedHostName + ", got :" + deserializedHostName);
492 " HostName, expected:" + expectedHostName + ", got :"
498 " HostName, expected:" + expectedHostName + ", got :"
513 + ", got: " + deserializedHostAddress);
520 + ", got: " + deserializedHostAddress);
526 + ", got: " + deserializedHostAddress);
538 + Arrays.toString(expectedAddress) + ", got: "
546 + ", got: " + Arrays.toString(deserializedAddress));
552 + ", got: " + Arrays.toString(deserializedAddress));
560 + expectedScopeId + ", got
638 equal(Object expected, Object got) argument
[all...]
/openjdk10/hotspot/src/cpu/x86/vm/
H A DnativeInst_x86.cpp125 address* got = (address *) jump->got_address(); local
126 *got = dest;
/openjdk10/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DClassReader.java132 String got = (e == null
137 " got "+ got + ", in File: " + cls.file.nameString + where);
/openjdk10/jdk/test/java/lang/String/
H A DSupplementary.java680 static void check(boolean err, String s, int got, int expected) { argument
683 + " returned an unexpected value. got "
684 + toHexString(got)
/openjdk10/jdk/test/java/text/Format/NumberFormat/
H A DBigDecimalFormat.java1001 errln("Wrong format.\n got:\n" + mf.format(testArgs) +
1014 private void checkFormat(String orig, StringBuffer got, String expected, argument
1016 if (!expected.equals(new String(got))) {
1020 "\n formatted: " + got +
1033 "\n got: " + position +
1040 "\n got: " + position +

Completed in 108 milliseconds

12345