HomeSort by relevance Sort by last modified time
    Searched full:newvalue (Results 126 - 150 of 719) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/smack/src/org/jivesoftware/smack/util/collections/
IterableMap.java 32 * it.setValue("newValue");
53 * it.setValue("newValue");
  /external/webrtc/src/system_wrappers/interface/
atomic32.h 43 // Sets the value atomically to newValue if the value equals compare value.
45 bool CompareExchange(WebRtc_Word32 newValue, WebRtc_Word32 compareValue);
  /packages/apps/DeskClock/src/com/android/deskclock/
ScreensaverSettingsActivity.java 49 public boolean onPreferenceChange(Preference pref, Object newValue) {
52 final int idx = listPref.findIndexOfValue((String) newValue);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLIntegerProperty.java 41 public void setValue(Integer newValue) {
42 mCurrentValue = newValue;
GLLongProperty.java 41 public void setValue(Long newValue) {
42 mCurrentValue = newValue;
GLObjectProperty.java 41 public void setValue(Object newValue) {
42 mCurrentValue = newValue;
  /cts/tests/tests/util/src/android/util/cts/
LongSparseArrayTest.java 55 Integer newValue = 100;
58 sparseArray.put(existKey, newValue);
59 assertEquals(newValue, sparseArray.get(existKey));
120 Integer newValue = 100;
123 sparseArray.put(existKey, newValue);
124 assertEquals(newValue, sparseArray.get(existKey));
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/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/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));
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/scriptc/
rs_atomic.rsh 153 * If the value at addr matches compareValue then newValue is written.
157 * @param newValue The value to write if the test passes.
162 rsAtomicCas(volatile int32_t* addr, int32_t compareValue, int32_t newValue);
167 * If the value at addr matches compareValue then newValue is written.
171 * @param newValue The value to write if the test passes.
176 rsAtomicCas(volatile uint32_t* addr, uint32_t compareValue, uint32_t newValue);
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/scriptc/
rs_atomic.rsh 153 * If the value at addr matches compareValue then newValue is written.
157 * @param newValue The value to write if the test passes.
162 rsAtomicCas(volatile int32_t* addr, int32_t compareValue, int32_t newValue);
167 * If the value at addr matches compareValue then newValue is written.
171 * @param newValue The value to write if the test passes.
176 rsAtomicCas(volatile uint32_t* addr, uint32_t compareValue, uint32_t newValue);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/scriptc/
rs_atomic.rsh 153 * If the value at addr matches compareValue then newValue is written.
157 * @param newValue The value to write if the test passes.
162 rsAtomicCas(volatile int32_t* addr, int32_t compareValue, int32_t newValue);
167 * If the value at addr matches compareValue then newValue is written.
171 * @param newValue The value to write if the test passes.
176 rsAtomicCas(volatile uint32_t* addr, uint32_t compareValue, uint32_t newValue);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 103 * @param newValue the new value
105 public abstract void set(T obj, long newValue);
112 * @param newValue the new value
115 public abstract void lazySet(T obj, long newValue);
131 * @param newValue the new value
134 public long getAndSet(T obj, long newValue) {
137 if (compareAndSet(obj, current, newValue))
302 public void set(T obj, long newValue) {
304 unsafe.putLongVolatile(obj, offset, newValue);
307 public void lazySet(T obj, long newValue) {
    [all...]
  /external/clang/lib/Parse/
RAIIObjectsForParser.h 344 PoisonSEHIdentifiersRAIIObject(Parser &Self, bool NewValue)
345 : Ident_AbnormalTermination(Self.Ident_AbnormalTermination, NewValue),
346 Ident_GetExceptionCode(Self.Ident_GetExceptionCode, NewValue),
347 Ident_GetExceptionInfo(Self.Ident_GetExceptionInfo, NewValue),
348 Ident__abnormal_termination(Self.Ident__abnormal_termination, NewValue),
349 Ident__exception_code(Self.Ident__exception_code, NewValue),
350 Ident__exception_info(Self.Ident__exception_info, NewValue),
351 Ident___abnormal_termination(Self.Ident___abnormal_termination, NewValue),
352 Ident___exception_code(Self.Ident___exception_code, NewValue),
353 Ident___exception_info(Self.Ident___exception_info, NewValue) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Settings.js 403 var newValue = null;
406 newValue = newValue || {};
407 newValue.vertical = {};
408 newValue.vertical.size = oldSetting;
413 newValue = newValue || {};
414 newValue.horizontal = {};
415 newValue.horizontal.size = oldSettingH;
419 if (newValue)
    [all...]
  /external/srec/shared/src/
SessionTypeImpl.c 282 const void* oldValue, const void* newValue,
295 CHKLOG(rc, listener->listener->propertyChanged(listener->listener, name, oldValue, newValue, type, listener->data));
696 int *newValue = NULL;
702 newValue = MALLOC(sizeof(long), MTAG);
703 if (newValue == NULL)
708 CHKLOG(rc, lstrtoi(value, newValue, 10));
709 CHKLOG(rc, self->setProperty(self, key, newValue, TYPES_INT));
713 if (newValue != NULL)
714 FREE(newValue);
722 int *newValue = NULL
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
PopulatedCachesTest.java 89 Object newValue = new Object();
90 assertSame(entry.getValue(), cache.asMap().put(entry.getKey(), newValue));
92 warmed.add(entryOf(entry.getKey(), newValue));
96 assertEquals(newValue, cache.getUnchecked(entry.getKey()));
112 Object newValue = new Object();
113 assertSame(entry.getValue(), cache.asMap().putIfAbsent(entry.getKey(), newValue));
132 Object newValue = new Object();
133 cache.asMap().putAll(ImmutableMap.of(newKey, newValue));
135 assertEquals(newValue, cache.getUnchecked(newKey));
147 Object newValue = new Object()
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/audio_player/js/
audio_player.js 20 observer.open(function(newValue, oldValue) {
22 this.onModelExpandedChanged(oldValue, newValue);
321 * @param {boolean} newValue New value.
323 AudioPlayer.prototype.onModelExpandedChanged = function(oldValue, newValue) {
325 this.isExpanded_ === newValue)
328 if (this.isExpanded_ && !newValue)
331 if (this.isExpanded_ !== newValue) {
332 this.isExpanded_ = newValue;
336 window.appState.expanded = newValue;
  /packages/apps/Settings/src/com/android/settings/
DevelopmentSettings.java     [all...]
  /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) {

Completed in 839 milliseconds

1 2 3 4 56 7 8 91011>>