HomeSort by relevance Sort by last modified time
    Searched defs:newValue (Results 1 - 25 of 162) sorted by null

1 2 3 4 5 6 7

  /external/pdfium/fxjs/xfa/
cjx_boolean.cpp 32 ByteString newValue;
34 newValue = pValue->ToString();
36 int32_t iValue = FXSYS_atoi(newValue.c_str());
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
ConfigLoader.java 69 final StringBuilder newValue = new StringBuilder();
73 newValue.append(oldValue.substring(pos, m.start()));
75 newValue.append(sub == null ? m.group(0) : sub);
78 newValue.append(oldValue.substring(pos));
79 entry.setValue(newValue.toString());
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
AtomicBackoff.java 65 long newValue = Math.max(savedValue * 2, savedValue);
66 boolean swapped = value.compareAndSet(savedValue, newValue);
67 // Even if swapped is false, the current value should be at least as large as newValue
68 assert value.get() >= newValue;
70 log.log(Level.WARNING, "Increased {0} to {1}", new Object[] {name, newValue});
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/
PropertyChange.java 12 private final Object newValue;
23 return newValue;
26 public PropertyChange(ObservableProperty property, Object oldValue, Object newValue) {
29 this.newValue = newValue;
35 return newValue;
ListReplacementChange.java 16 private final Node newValue;
18 public ListReplacementChange(ObservableProperty observableProperty, int index, Node newValue) {
21 this.newValue = newValue;
38 nodeList.set(index, newValue);
  /external/guava/guava-tests/test/com/google/common/cache/
AbstractLoadingCacheTest.java 60 Object newValue = new Object();
61 valueRef.set(newValue);
62 assertSame(newValue, cache.getUnchecked(new Object()));
91 Object newValue = new Object();
92 valueRef.set(newValue);
93 assertSame(newValue, cache.getUnchecked(new Object()));
122 Object newValue = new Object();
123 valueRef.set(newValue);
124 assertSame(newValue, cache.getUnchecked(new Object()));
153 Object newValue = new Object()
    [all...]
AbstractCacheTest.java 48 Object newValue = new Object();
49 valueRef.set(newValue);
50 assertSame(newValue, cache.getIfPresent(new Object()));
  /external/libcxx/test/support/
unique_ptr_test_helper.h 39 newValue(int num_elements) {
47 newValue(int num_elements) {
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
SettingsUtils.java 90 final String newValue = get(namespace, key);
92 assertWithMessage("invalid value for '%s' settings", key).that(newValue)
95 assertWithMessage("invalid value for '%s' settings", key).that(newValue)
140 final String newValue = get(namespace, key);
141 assertWithMessage("invalid value for '%s' settings", key).that(newValue).isNull();
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
SettingsUtils.java 89 final String newValue = get(namespace, key);
91 assertWithMessage("invalid value for '%s' settings", key).that(newValue)
94 assertWithMessage("invalid value for '%s' settings", key).that(newValue)
139 final String newValue = get(namespace, key);
140 assertWithMessage("invalid value for '%s' settings", key).that(newValue).isNull();
  /external/cldr/tools/java/org/unicode/cldr/util/
DateTimeCanonicalizer.java 51 String newValue;
67 newValue = result.toString();
69 newValue = formatDateParser.toString();
72 if (!value.equals(newValue)) {
73 value = newValue;
  /external/deqp/framework/randomshaders/
rsgExecutionContext.cpp 95 ExecValueAccess newValue = tmp.getValue();
99 newValue.asBool(i) = oldValue.asBool(i) && value.asBool(i);
101 pushExecutionMask(newValue);
  /external/guava/guava-tests/test/com/google/common/collect/
MutableClassToInstanceMapTest.java 115 Integer newValue = map.getInstance(Integer.class);
116 assertEquals(7, (int) newValue);
  /cts/tests/tests/util/src/android/util/cts/
LongSparseArrayTest.java 67 Integer newValue = 100;
70 sparseArray.put(existKey, newValue);
71 assertEquals(newValue, sparseArray.get(existKey));
133 Integer newValue = 100;
136 sparseArray.put(existKey, newValue);
137 assertEquals(newValue, sparseArray.get(existKey));
SparseArrayTest.java 64 Integer newValue = 100;
67 sparseArray.put(existKey, newValue);
68 assertEquals(newValue, sparseArray.get(existKey));
130 Integer newValue = 100;
133 sparseArray.put(existKey, newValue);
134 assertEquals(newValue, sparseArray.get(existKey));
SparseIntArrayTest.java 59 int newValue = 23;
62 sparseIntArray.put(existKey, newValue);
63 assertEquals(newValue, sparseIntArray.get(existKey));
108 int newValue = 23;
111 sparseIntArray.put(existKey, newValue);
112 assertEquals(newValue, sparseIntArray.get(existKey));
SparseLongArrayTest.java 65 long newValue = 100;
68 sparseArray.put(existKey, newValue);
69 assertEquals(newValue, sparseArray.get(existKey));
127 long newValue = 100;
130 sparseArray.put(existKey, newValue);
131 assertEquals(newValue, sparseArray.get(existKey));
  /dalvik/dx/tests/137-dexmerger-dex38/src/invokecustom/
InvokeCustom.java 105 int newValue = (int) getter.invokeExact();
106 System.out.print("checkStaticFieldTest9: old " + oldValue + " new " + newValue +
108 System.out.println((newValue == NEW_VALUE) ? "OK" : "ERROR");
118 float newValue = (float) getter.invokeExact(this);
119 System.out.print("checkFieldTest9: old " + oldValue + " new " + newValue +
121 System.out.println((newValue == NEW_VALUE) ? "OK" : "ERROR");
  /external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
PropertyChangeEventTest.java 38 Object newValue = new Object();
41 oldValue, newValue);
45 assertSame(newValue, event.getNewValue());
70 Object newValue = new Object();
72 oldValue, newValue);
76 assertSame(newValue, event.getNewValue());
98 Object newValue = new Object();
101 oldValue, newValue);
110 assertSame(newValue, event.getNewValue());
120 Object newValue = new Object()
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/draft/
EnumLookup.java 54 final T newValue = entry.getValue();
57 result.map.put(key, newValue);
58 } else if (old != newValue) {
59 throw new IllegalArgumentException("Incompatible mapping: " + key + "=" + old + "!=" + newValue);
  /external/cldr/tools/java/org/unicode/cldr/test/
CheckCasing.java 60 String newValue = value;
63 newValue = UCharacter.toLowerCase(uLocale, value);
66 newValue = UCharacter.toTitleCase(uLocale, value, null);
69 newValue = TitleCaseFirst(uLocale, value);
75 if (!newValue.equals(value)) {
82 new Object[] { newValue })); // the message; can be MessageFormat with arguments
  /external/cldr/tools/java/org/unicode/cldr/tool/
CLDRCompare.java 82 String newValue = newCldrFile == null ? null : newCldrFile.getStringValue(path);
84 if (newValue == null) {
95 boolean valuesSame = newValue.equals(oldValue);
  /external/guava/guava/src/com/google/common/collect/
ConcurrentHashMultiset.java 232 int newValue = IntMath.checkedAdd(oldValue, occurrences);
233 if (existingCounter.compareAndSet(oldValue, newValue)) {
234 // newValue can't == 0, so no need to check & remove
289 int newValue = Math.max(0, oldValue - occurrences);
290 if (existingCounter.compareAndSet(oldValue, newValue)) {
291 if (newValue == 0) {
330 int newValue = oldValue - occurrences;
331 if (existingCounter.compareAndSet(oldValue, newValue)) {
332 if (newValue == 0) {
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicLongMap.java 126 long newValue = oldValue + delta;
127 if (atomic.compareAndSet(oldValue, newValue)) {
128 return newValue;
175 long newValue = oldValue + delta;
176 if (atomic.compareAndSet(oldValue, newValue)) {
185 * Associates {@code newValue} with {@code key} in this map, and returns the value previously
188 public long put(K key, long newValue) {
192 atomic = map.putIfAbsent(key, new AtomicLong(newValue));
203 if (map.replace(key, atomic, new AtomicLong(newValue))) {
210 if (atomic.compareAndSet(oldValue, newValue)) {
    [all...]
  /external/proguard/src/proguard/evaluation/
Variables.java 136 Value newValue = thisValue.generalize(otherValue);
138 changed = changed || !thisValue.equals(newValue);
140 this.values[index] = newValue;

Completed in 876 milliseconds

1 2 3 4 5 6 7