/cts/tests/tests/util/src/android/util/cts/ |
SparseArrayTest.java | 51 Integer newValue = 100; 54 sparseArray.put(existKey, newValue); 55 assertEquals(newValue, sparseArray.get(existKey)); 116 Integer newValue = 100; 119 sparseArray.put(existKey, newValue); 120 assertEquals(newValue, sparseArray.get(existKey));
|
SparseBooleanArrayTest.java | 60 boolean newValue = false; 63 sparseBooleanArray.put(existKey, newValue); 64 assertEquals(newValue, sparseBooleanArray.get(existKey)); 116 boolean newValue = false; 119 sparseBooleanArray.put(existKey, newValue); 120 assertEquals(newValue, sparseBooleanArray.get(existKey));
|
SparseIntArrayTest.java | 56 int newValue = 23; 59 sparseIntArray.put(existKey, newValue); 60 assertEquals(newValue, sparseIntArray.get(existKey)); 104 int newValue = 23; 107 sparseIntArray.put(existKey, newValue); 108 assertEquals(newValue, sparseIntArray.get(existKey));
|
SparseLongArrayTest.java | 55 long newValue = 100; 58 sparseArray.put(existKey, newValue); 59 assertEquals(newValue, sparseArray.get(existKey)); 116 long newValue = 100; 119 sparseArray.put(existKey, newValue); 120 assertEquals(newValue, sparseArray.get(existKey));
|
/external/chromium-trace/catapult/tracing/tracing/ui/extras/chrome/cc/ |
layer_view.html | 62 set layerTreeImpl(newValue) { 63 return this.layerTreeQuadStackView_.layerTreeImpl = newValue; 66 set isRenderPassQuads(newValue) { 67 return this.layerTreeQuadStackView_.isRenderPassQuads = newValue; 74 set selection(newValue) { 75 this.layerTreeQuadStackView_.selection = newValue;
|
/external/clang/test/Analysis/inlining/ |
DynDispatchBifurcate.m | 32 - (void)setValue2:(int)newValue { 33 value2 = newValue; 39 - (void)setValue3:(int)newValue { 40 value3 = newValue; 102 - (void)setValue:(int)newValue { 103 value = newValue;
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ConcurrentHashMultisetBasherTest.java | 129 int newValue = random.nextInt(3); 130 int oldValue = multiset.setCount(key, newValue); 131 deltas[keyIndex] += (newValue - oldValue); 135 int newValue = random.nextInt(3); 137 if (multiset.setCount(key, oldValue, newValue)) { 138 deltas[keyIndex] += (newValue - oldValue);
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
SparseArrayTest.java | 69 Integer newValue = 100; 72 sparseArray.put(existKey, newValue); 73 assertEquals(newValue, sparseArray.get(existKey)); 135 Integer newValue = 100; 138 sparseArray.put(existKey, newValue); 139 assertEquals(newValue, sparseArray.get(existKey));
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
RespondViaSmsSettings.java | 93 public boolean onPreferenceChange(Preference preference, Object newValue) { 96 Log.d(this, " newValue = '%s'", newValue); 102 // Preference itself gets updated, so we need to use newValue here 104 pref.setTitle((String) newValue); 108 editor.putString(pref.getKey(), (String) newValue).commit();
|
/external/clang/lib/Parse/ |
RAIIObjectsForParser.h | 350 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue) 351 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue), 352 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue), 353 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue), 354 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue), 355 Ident__exception_code(Self.Ident__exception_code, NewValue), 356 Ident__exception_info(Self.Ident__exception_info, NewValue), 357 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue), 358 Ident___exception_code(Self.Ident___exception_code, NewValue), 359 Ident___exception_info(Self.Ident___exception_info, NewValue) { [all...] |
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/ |
CaptionCustomFragment.java | 144 public boolean onPreferenceChange(Preference preference, Object newValue) { 151 setCaptionsFontFamily((String) newValue); 154 setCaptionsTextColor((String) newValue); 157 setCaptionsTextOpacity((String) newValue); 160 setCaptionsEdgeType((String) newValue); 163 setCaptionsEdgeColor((String) newValue); 166 setCaptionsBackgroundColor((String) newValue); 169 setCaptionsBackgroundOpacity((String) newValue); 172 setCaptionsWindowColor((String) newValue); 175 setCaptionsWindowOpacity((String) newValue); [all...] |
DevelopmentFragment.java | [all...] |
/frameworks/base/services/core/java/com/android/server/pm/ |
UserRestrictionsUtils.java | 307 final boolean newValue = newRestrictions.getBoolean(key); 310 if (newValue != prevValue) { 311 applyUserRestriction(context, userId, key, newValue); 324 boolean newValue) { 327 + " key=" + key + " value=" + newValue); 344 if (newValue) { 351 if (newValue) { 372 if (newValue) { 380 if (newValue) { 391 if (newValue) { [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DevelopmentSettings.java | [all...] |
/external/guava/guava-tests/test/com/google/common/cache/ |
PopulatedCachesTest.java | 88 Object newValue = new Object(); 89 assertSame(entry.getValue(), cache.asMap().put(entry.getKey(), newValue)); 91 warmed.add(entryOf(entry.getKey(), newValue)); 95 assertEquals(newValue, cache.getUnchecked(entry.getKey())); 111 Object newValue = new Object(); 112 assertSame(entry.getValue(), cache.asMap().putIfAbsent(entry.getKey(), newValue)); 131 Object newValue = new Object(); 132 cache.asMap().putAll(ImmutableMap.of(newKey, newValue)); 134 assertEquals(newValue, cache.getUnchecked(newKey)); 146 Object newValue = new Object() [all...] |
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicIntegerFieldUpdater.java | 110 * @param newValue the new value 112 public abstract void set(T obj, int newValue); 119 * @param newValue the new value 122 public abstract void lazySet(T obj, int newValue); 138 * @param newValue the new value 141 public int getAndSet(T obj, int newValue) { 145 } while (!compareAndSet(obj, prev, newValue)); 449 public final void set(T obj, int newValue) { 451 U.putIntVolatile(obj, offset, newValue); 454 public final void lazySet(T obj, int newValue) { [all...] |
AtomicIntegerArray.java | 96 * @param newValue the new value 98 public final void set(int i, int newValue) { 99 U.putIntVolatile(array, checkedByteOffset(i), newValue); 106 * @param newValue the new value 109 public final void lazySet(int i, int newValue) { 110 U.putOrderedInt(array, checkedByteOffset(i), newValue); 118 * @param newValue the new value 121 public final int getAndSet(int i, int newValue) { 122 return U.getAndSetInt(array, checkedByteOffset(i), newValue);
|
AtomicLong.java | 83 * @param newValue the new value 85 public final void set(long newValue) { 88 U.putLongVolatile(this, VALUE, newValue); 94 * @param newValue the new value 97 public final void lazySet(long newValue) { 98 U.putOrderedLong(this, VALUE, newValue); 104 * @param newValue the new value 107 public final long getAndSet(long newValue) { 108 return U.getAndSetLong(this, VALUE, newValue);
|
AtomicLongArray.java | 95 * @param newValue the new value 97 public final void set(int i, long newValue) { 98 U.putLongVolatile(array, checkedByteOffset(i), newValue); 105 * @param newValue the new value 108 public final void lazySet(int i, long newValue) { 109 U.putOrderedLong(array, checkedByteOffset(i), newValue); 117 * @param newValue the new value 120 public final long getAndSet(int i, long newValue) { 121 return U.getAndSetLong(array, checkedByteOffset(i), newValue);
|
AtomicReferenceArray.java | 107 * @param newValue the new value 109 public final void set(int i, E newValue) { 110 U.putObjectVolatile(array, checkedByteOffset(i), newValue); 117 * @param newValue the new value 120 public final void lazySet(int i, E newValue) { 121 U.putOrderedObject(array, checkedByteOffset(i), newValue); 129 * @param newValue the new value 133 public final E getAndSet(int i, E newValue) { 134 return (E)U.getAndSetObject(array, checkedByteOffset(i), newValue);
|
/developers/build/prebuilts/gradle/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/ |
CustomRestrictionsFragment.java | 181 public boolean onPreferenceChange(Preference preference, Object newValue) { 183 mBooleanEntry.setSelectedState((Boolean) newValue); 185 mChoiceEntry.setSelectedString((String) newValue); 187 String[] selectedStrings = new String[((Set<String>)newValue).size()]; 189 for (String value : (Set<String>) newValue) {
|
/developers/samples/android/content/multiuser/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/ |
CustomRestrictionsFragment.java | 181 public boolean onPreferenceChange(Preference preference, Object newValue) { 183 mBooleanEntry.setSelectedState((Boolean) newValue); 185 mChoiceEntry.setSelectedString((String) newValue); 187 String[] selectedStrings = new String[((Set<String>)newValue).size()]; 189 for (String value : (Set<String>) newValue) {
|
/development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/ |
CustomRestrictionsFragment.java | 181 public boolean onPreferenceChange(Preference preference, Object newValue) { 183 mBooleanEntry.setSelectedState((Boolean) newValue); 185 mChoiceEntry.setSelectedString((String) newValue); 187 String[] selectedStrings = new String[((Set<String>)newValue).size()]; 189 for (String value : (Set<String>) newValue) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/properties/ |
feedWatch.emf.properties | 43 # -oldvalue "2006-05-04T12:14:33Z" -newvalue "2006-05-11T12:14:33Z" -debug 0"/> 61 # feedWatchAction.NewValue.0 - The changed value of the node you asked for, from the latest version of the feed; 76 # If the node is found and the feed has been changed, the property feedWatchAction.NewValue.0 77 # (and/or feedWatchAction.NewValue.1, feedWatchAction.NewValue.2, etc.) will be set to the new changed value.
|
feedWatch.uml2.properties | 40 # -oldvalue "2006-05-04T12:14:33Z" -newvalue "2006-05-11T12:14:33Z" -debug 0"/> 58 # feedWatchAction.NewValue.0 - The changed value of the node you asked for, from the latest version of the feed; 73 # If the node is found and the feed has been changed, the property feedWatchAction.NewValue.0 74 # (and/or feedWatchAction.NewValue.1, feedWatchAction.NewValue.2, etc.) will be set to the new changed value.
|