Home
last modified time | relevance | path

Searched refs:oldValues (Results 1 – 12 of 12) sorted by relevance

/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultimapReplaceValuesTester.java82 List<V> oldValues = new ArrayList<V>(multimap().get(key)); in testReplaceValuesWithEmpty() local
85 assertEquals(oldValues, new ArrayList<V>(multimap().replaceValues(key, values))); in testReplaceValuesWithEmpty()
87 assertEquals(size - oldValues.size(), multimap().size()); in testReplaceValuesWithEmpty()
94 List<V> oldValues = new ArrayList<V>(multimap().get(key)); in testReplaceValuesWithDuplicates() local
99 assertEquals(oldValues, new ArrayList<V>(multimap().replaceValues(key, values))); in testReplaceValuesWithDuplicates()
101 size - oldValues.size() + multimap().get(key).size(), in testReplaceValuesWithDuplicates()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DCalendarCache.java77 long[] oldValues = values; in rehash() local
88 if (oldValues[i] != EMPTY) { in rehash()
89 put(oldKeys[i], oldValues[i]); in rehash()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCalendarCache.java75 long[] oldValues = values; in rehash() local
86 if (oldValues[i] != EMPTY) { in rehash()
87 put(oldKeys[i], oldValues[i]); in rehash()
/external/spirv-llvm/test/SPIRV/transcoding/
DAtomicCompareExchange_cl20.ll56 define spir_kernel void @atomic_in_loop(i32 addrspace(1)* %destMemory, i32 addrspace(1)* %oldValues
59 %oldValues.addr = alloca i32 addrspace(1)*, align 8
64 store i32 addrspace(1)* %oldValues, i32 addrspace(1)** %oldValues.addr, align 8
78 %4 = load i32 addrspace(1)*, i32 addrspace(1)** %oldValues.addr, align 8
/external/deqp/framework/randomshaders/
DrsgVariableManager.cpp444 map<const Variable*, const ValueEntry*> oldValues; in popValueScope() local
448 oldValues[(*valueIter)->getVariable()] = *valueIter; in popValueScope()
468 if (oldValues.find(var) != oldValues.end()) in popValueScope()
470 const ValueEntry* oldEntry = oldValues[var]; in popValueScope()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DLinkedListMultimap.java604 List<V> oldValues = getCopy(key); in replaceValues() local
625 return oldValues; in replaceValues()
640 List<V> oldValues = getCopy(key); in removeAll() local
642 return oldValues; in removeAll()
DAbstractMapBasedMultimap.java232 Collection<V> oldValues = createCollection(); in replaceValues() local
233 oldValues.addAll(collection); in replaceValues()
244 return unmodifiableCollectionSubclass(oldValues); in replaceValues()
/external/spirv-llvm/test/SPIRV/
Dmemory_access.ll39 …void @test_load_store(i32 addrspace(1)* %destMemory, i32 addrspace(1)* %oldValues, i32 %newValue) …
42 %0 = addrspacecast i32 addrspace(1)* %oldValues to i32 addrspace(4)*
/external/guava/guava/src/com/google/common/collect/
DLinkedListMultimap.java608 List<V> oldValues = getCopy(key); in replaceValues() local
629 return oldValues; in replaceValues()
644 List<V> oldValues = getCopy(key); in removeAll() local
646 return oldValues; in removeAll()
DAbstractMapBasedMultimap.java235 Collection<V> oldValues = createCollection(); in replaceValues() local
236 oldValues.addAll(collection); in replaceValues()
247 return unmodifiableCollectionSubclass(oldValues); in replaceValues()
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DOpenIntToDoubleHashMap.java439 final double[] oldValues = values; in growTable() local
452 newValues[index] = oldValues[i]; in growTable()
DOpenIntToFieldHashMap.java451 final T[] oldValues = values; in growTable() local
464 newValues[index] = oldValues[i]; in growTable()