Searched refs:arrayMap (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/tests/servicestests/src/com/android/server/timedetector/ |
D | ArrayMapWithHistoryTest.java | 43 ArrayMap<String, String> arrayMap = new ArrayMap<>(); in testValueHistoryBehavior() local 45 compareGetAndSizeForKeys(historyMap, arrayMap, entry("K1", null)); in testValueHistoryBehavior() 50 putAndCompareReturnValue(historyMap, arrayMap, "K1", "V1"); in testValueHistoryBehavior() 51 compareGetAndSizeForKeys(historyMap, arrayMap, entry("K1", "V1")); in testValueHistoryBehavior() 52 compareKeyAtAndValueAtForIndex(0, historyMap, arrayMap); in testValueHistoryBehavior() 58 putAndCompareReturnValue(historyMap, arrayMap, "K1", "V2"); in testValueHistoryBehavior() 59 compareGetAndSizeForKeys(historyMap, arrayMap, entry("K1", "V2")); in testValueHistoryBehavior() 60 compareKeyAtAndValueAtForIndex(0, historyMap, arrayMap); in testValueHistoryBehavior() 67 putAndCompareReturnValue(historyMap, arrayMap, "K1", "V3"); in testValueHistoryBehavior() 68 compareGetAndSizeForKeys(historyMap, arrayMap, entry("K1", "V3")); in testValueHistoryBehavior() [all …]
|
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/ |
D | ArrayMapTests.java | 337 ArrayMap<ControlledHash, Integer> arrayMap = new ArrayMap<ControlledHash, Integer>(); in run() local 351 oldArray = arrayMap.put(key, i); in run() 358 oldArray = arrayMap.remove(key); in run() 368 dump(hashMap, arrayMap); in run() 376 if (!validateArrayMap(arrayMap)) { in run() 377 dump(hashMap, arrayMap); in run() 380 if (!compareMaps(hashMap, arrayMap)) { in run() 381 dump(hashMap, arrayMap); in run() 390 arrayMap.put(new ControlledHash(50000), 100); in run() 392 Iterator<ControlledHash> it = arrayMap.keySet().iterator(); in run() [all …]
|
/frameworks/base/core/java/com/android/internal/util/ |
D | CollectionUtils.java | 453 ArrayMap<K, V> arrayMap = (ArrayMap<K, V>) cur; in forEach() local 455 action.accept(arrayMap.keyAt(i), arrayMap.valueAt(i)); in forEach()
|
D | XmlUtils.java | 1135 String[] name, ReadMapCallback callback, boolean arrayMap) in readThisListXml() argument 1142 Object val = readThisValueXml(parser, name, callback, arrayMap); in readThisListXml() 1200 String[] name, ReadMapCallback callback, boolean arrayMap) in readThisSetXml() argument 1207 Object val = readThisValueXml(parser, name, callback, arrayMap); in readThisSetXml() 1553 ReadMapCallback callback, boolean arrayMap) in readThisValueXml() argument 1619 res = arrayMap in readThisValueXml() 1627 res = readThisListXml(parser, "list", name, callback, arrayMap); in readThisValueXml() 1633 res = readThisSetXml(parser, "set", name, callback, arrayMap); in readThisValueXml()
|