Home
last modified time | relevance | path

Searched refs:TABLE (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/constant/
DDirectMethodHandleDesc.java137 if (i >= 2 && i < TABLE.length) { in valueOf()
138 return TABLE[i]; in valueOf()
148 private static final @Stable Kind[] TABLE; field in DirectMethodHandleDesc.Kind
156 TABLE = new Kind[max+1];
159 if (i >= TABLE.length || TABLE[i] != null)
161 TABLE[i] = kind;
166 if (TABLE[ii] != null)
167 … throw new AssertionError("TABLE entry for (invokeInterface, false) used by " + TABLE[ii]);
168 TABLE[ii] = INTERFACE_VIRTUAL;
176 if (TABLE[i] == null) {
[all …]
/libcore/ojluni/src/test/java/util/HashMap/
DWhiteBoxResizeTest.java56 final VarHandle TABLE; field in WhiteBoxResizeTest
63 TABLE = lookup.findVarHandle(mClass, "table", nodeArrayClass); in WhiteBoxResizeTest()
78 return (Object[]) TABLE.get(map); in table()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DSerializationStressTest.java116 static final Map<String, String> TABLE = new Hashtable<String, String>(); field in SerializationStressTest
160 TABLE.put("one", "1");
161 TABLE.put("two", "2");
162 TABLE.put("three", "3");
DSerializationStressTest3.java627 objToSave = TABLE; in test_18_90_writeObject()
632 assertTrue(MSG_TEST_FAILED + objToSave, TABLE.equals(objLoaded)); in test_18_90_writeObject()
655 Object col = Collections.synchronizedMap(TABLE); in test_18_91_writeObject()
684 Object col = Collections.unmodifiableMap(TABLE); in test_18_92_writeObject()
/libcore/expectations/
Dknownfailures.txt536 description: "Column label has format TABLE.COLUMN expected: COLUMN",