Home
last modified time | relevance | path

Searched refs:longKey (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/prefs/
DOldPreferencesTest.java38 private static final String longKey; field in OldPreferencesTest
46 longKey = key.toString();
439 pref.put(longKey, longValue); in testPut()
441 pref.put(longKey + 1, longValue); in testPut()
446 pref.put(longKey, longValue + 1); in testPut()
453 pref.put(longKey, longValue + 1); in testPut()
459 pref.put(longKey, longValue); in testPut()
472 pref.putBoolean(longKey, false); in testPutBoolean()
474 pref.putBoolean(longKey + "a", false); in testPutBoolean()
490 pref.putDouble(longKey, 3); in testPutDouble()
[all …]
/libcore/ojluni/src/test/java/util/Map/
DCollisions.java87 boolean longKey = key.length() > 5; in testStringIteration()
88 int index = key.hashCode() + (longKey ? mapSize / 2 : 0); in testStringIteration()
97 boolean longKey = each.length() > 5; in testStringIteration()
98 int index = each.hashCode() + (longKey ? mapSize / 2 : 0); in testStringIteration()