Searched defs:oldValue (Results 1 - 25 of 105) sorted by relevance

12345

/external/tpm2/
H A DNV_SetBits.c28 UINT64 oldValue; local
49 oldValue = 0;
52 NvGetIntIndexData(in->nvIndex, &nvIndex, &oldValue);
55 newValue = oldValue | in->bits;
60 && newValue != oldValue)
/external/guava/guava/src/com/google/common/collect/
H A DForwardingConcurrentMap.java57 public boolean replace(K key, V oldValue, V newValue) { argument
58 return delegate().replace(key, oldValue, newValue);
H A DAbstractBiMap.java131 V oldValue = delegate.put(key, value);
132 updateInverseMap(key, containedKey, oldValue, value);
133 return oldValue;
137 K key, boolean containedKey, V oldValue, V newValue) {
139 removeFromInverseMap(oldValue);
149 V oldValue = delegate.remove(key);
150 removeFromInverseMap(oldValue);
151 return oldValue;
154 private void removeFromInverseMap(V oldValue) { argument
155 inverse.delegate.remove(oldValue);
136 updateInverseMap( K key, boolean containedKey, V oldValue, V newValue) argument
[all...]
H A DMapMaker.java817 public boolean replace(K key, @Nullable V oldValue, V newValue) { argument
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DConcurrentMap.java34 boolean replace(K key, V oldValue, V newValue); argument
H A DConcurrentHashMap.java73 public boolean replace(K key, V oldValue, V newValue) { argument
74 if (oldValue == null || newValue == null) {
76 } else if (containsKey(key) && get(key).equals(oldValue)) {
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/
H A DPropertyChange.java11 private final Object oldValue; field in class:PropertyChange
19 return oldValue;
26 public PropertyChange(ObservableProperty property, Object oldValue, Object newValue) { argument
28 this.oldValue = oldValue;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs96 public static string replace( string str, char oldValue, char newValue ) argument
98 int index = str.IndexOf( oldValue );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringExtensions.cs97 public static string replace(this string str, char oldValue, char newValue) argument
99 return str.Replace(oldValue, newValue);
/external/guava/guava/src/com/google/common/cache/
H A DCacheLoader.java84 * @param oldValue the non-null old value corresponding to {@code key}
94 public ListenableFuture<V> reload(K key, V oldValue) throws Exception { argument
96 checkNotNull(oldValue);
193 public ListenableFuture<V> reload(final K key, final V oldValue) throws Exception {
197 return loader.reload(key, oldValue).get();
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/observer/
H A DAstObserver.java45 * @param oldValue value of the property before the change
48 void propertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue); argument
H A DAstObserverAdapter.java30 public void propertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) { argument
H A DPropagatingAstObserver.java42 public void concretePropertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) {
43 observer.propertyChange(observedNode, property, oldValue, newValue);
59 public final void propertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) { argument
60 considerRemoving(oldValue);
62 concretePropertyChange(observedNode, property, oldValue, newValue);
85 public void concretePropertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) { argument
93 public void concreteListReplacement(NodeList observedNode, int index, Node oldValue, Node newValue) { argument
/external/deqp/framework/randomshaders/
H A DrsgExecutionContext.cpp96 ExecConstValueAccess oldValue = getExecutionMask(); local
99 newValue.asBool(i) = oldValue.asBool(i) && value.asBool(i);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMapMaker.java91 public boolean replace(K key, V oldValue, V newValue) { argument
92 if (containsKey(key) && get(key).equals(oldValue)) {
H A DAbstractBiMap.java127 V oldValue = delegate.put(key, value);
128 updateInverseMap(key, containedKey, oldValue, value);
129 return oldValue;
133 K key, boolean containedKey, V oldValue, V newValue) {
135 removeFromInverseMap(oldValue);
145 V oldValue = delegate.remove(key);
146 removeFromInverseMap(oldValue);
147 return oldValue;
150 private void removeFromInverseMap(V oldValue) { argument
151 inverse.delegate.remove(oldValue);
132 updateInverseMap( K key, boolean containedKey, V oldValue, V newValue) argument
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DTestingCacheLoaders.java157 public ListenableFuture<Integer> reload(Integer key, Integer oldValue) { argument
159 return Futures.immediateFuture(oldValue + 1);
/external/icu/icu4c/source/test/cintltst/
H A Dchashtst.c343 int32_t oldValue = local
347 key, u_errorName(status), oldValue);
348 } else if (oldValue != expectedOldValue) {
350 key, oldValue, expectedOldValue);
353 key, value, oldValue);
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
H A DLexicalDifferenceCalculator.java113 public void calculatePropertyChange(NodeText nodeText, Node observedNode, ObservableProperty property, Object oldValue, Object newValue) { argument
119 CalculatedSyntaxModel after = calculatedSyntaxModelAfterPropertyChange(element, observedNode, property, oldValue, newValue);
275 CalculatedSyntaxModel calculatedSyntaxModelAfterPropertyChange(Node node, ObservableProperty property, Object oldValue, Object newValue) { argument
276 return calculatedSyntaxModelAfterPropertyChange(ConcreteSyntaxModel.forClass(node.getClass()), node, property, oldValue, newValue);
280 CalculatedSyntaxModel calculatedSyntaxModelAfterPropertyChange(CsmElement csm, Node node, ObservableProperty property, Object oldValue, Object newValue) { argument
282 calculatedSyntaxModelForNode(csm, node, elements, new PropertyChange(property, oldValue, newValue));
/external/skia/tests/
H A DResourceAllocatorTest.cpp107 bool oldValue = fExplicitlyAllocateGPUResources; local
109 return oldValue;
/external/swiftshader/src/Reactor/
H A DOptimizer.cpp401 Ice::Variable *oldValue = instruction->getDest(); local
405 newValue = context->getConstantUndef(oldValue->getType());
408 for(Ice::Inst *use : uses[oldValue])
414 if(use->getSrc(i) == oldValue)
423 uses.erase(oldValue);
/external/icu/icu4c/source/common/
H A Dstringtriebuilder.cpp336 int32_t oldValue= // Only in debug mode to avoid a compiler warning about unused oldValue. local
339 U_ASSERT(oldValue==0);
365 int32_t oldValue= // Only in debug mode to avoid a compiler warning about unused oldValue. local
368 U_ASSERT(oldValue==0);
H A Dunifiedcache.cpp459 const SharedObject *oldValue = (const SharedObject *) element->value.pointer; local
467 oldValue->removeSoftRef();
/external/skqp/src/gpu/ccpr/
H A DGrCCPathParser.cpp226 int32_t oldValue = indices[endIndex]; local
230 indices[endIndex] = oldValue;
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.runtime_3.11.0.v20150405-1723.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...

Completed in 692 milliseconds

12345