HomeSort by relevance Sort by last modified time
    Searched full:oldvalue (Results 101 - 125 of 273) sorted by null

1 2 3 45 6 7 8 91011

  /packages/apps/Gallery2/src/com/android/camera/ui/
CountdownTimerPopup.java 82 public void onValueChange(NumberPicker picker, int oldValue, int newValue) {
  /external/chromium-trace/trace-viewer/src/
profiling_view.js 84 didSetTracingController_: function(value, oldValue) {
85 if (oldValue)
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
IntMap.java 135 Object oldValue = e.value;
137 return (T) oldValue;
  /system/core/libcutils/
hashmap.c 211 void* oldValue = current->value;
213 return oldValue;
  /external/icu4c/common/
stringtriebuilder.cpp 334 int32_t oldValue= // Only in debug mode to avoid a compiler warning about unused oldValue.
337 U_ASSERT(oldValue==0);
363 int32_t oldValue= // Only in debug mode to avoid a compiler warning about unused oldValue.
366 U_ASSERT(oldValue==0);
uhash.c 145 UHashTok oldValue = e->value;
151 if (oldValue.pointer != NULL &&
152 oldValue.pointer != value.pointer) { /* Avoid double deletion */
153 (*hash->valueDeleter)(oldValue.pointer);
155 oldValue.pointer = NULL;
174 return oldValue;
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 336 V oldValue;
346 oldValue = e.value;
367 oldValue = null;
374 return oldValue;
522 V oldValue = null;
541 oldValue = v;
551 return oldValue;
554 final boolean replace(K key, int hash, V oldValue, V newValue) {
564 if (oldValue.equals(e.value)) {
581 V oldValue = null
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebNSDataExtras.m 381 NSString *oldValue = [headerFields objectForKey:lastKey];
382 if (oldValue) {
383 NSString *newValue = [[NSString alloc] initWithFormat:@"%@, %@", oldValue, value];
  /libcore/luni/src/main/java/java/util/
HashMap.java 410 V oldValue = e.value;
412 return oldValue;
435 V oldValue = entry.value;
437 return oldValue;
759 V oldValue = this.value;
761 return oldValue;
    [all...]
EnumMap.java 678 V oldValue = (V) values[keyOrdinal];
680 return oldValue;
784 V oldValue = (V) values[keyOrdinal];
786 return oldValue;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 63 private static final String feedWatchActionOldValue = "feedWatchAction.OldValue"; //$NON-NLS-1$
169 " -oldvalue \"" + oldContent + "\"" + //$NON-NLS-1$ //$NON-NLS-2$
  /external/guava/guava/src/com/google/common/collect/
ComputingConcurrentHashMap.java 189 V oldValue = put(key, hash, value, true);
190 if (oldValue != null) {
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheBuilder.java 252 public boolean replace(K key, V oldValue, V newValue) {
253 if (containsKey(key) && get(key).equals(oldValue)) {
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
ImageCache.java 145 BitmapDrawable oldValue, BitmapDrawable newValue) {
146 if (RecyclingBitmapDrawable.class.isInstance(oldValue)) {
149 ((RecyclingBitmapDrawable) oldValue).setIsCached(false);
156 mReusableBitmaps.add(new SoftReference<Bitmap>(oldValue.getBitmap()));
  /external/webkit/Source/JavaScriptCore/bytecompiler/
NodesCodegen.cpp 563 RegisterID* oldValue;
565 oldValue = 0;
568 oldValue = emitPostIncOrDec(generator, generator.finalDestination(dst), value.get(), m_operator);
571 return oldValue;
577 RegisterID* oldValue;
579 oldValue = 0;
582 oldValue = emitPostIncOrDec(generator, generator.finalDestination(dst), value.get(), m_operator);
585 return oldValue;
597 RegisterID* oldValue;
599 oldValue = 0
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Utilities.h 50 void transferHiddenDependency(v8::Handle<v8::Object>, EventListener* oldValue, v8::Local<v8::Value> newValue, int cacheIndex);
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java     [all...]
  /dalvik/vm/interp/
Jit.cpp 622 JitEntryInfoUnion oldValue;
630 oldValue = gDvmJit.pJitEntryTable[prev].u;
631 newValue = oldValue;
633 } while (android_atomic_release_cas(oldValue.infoWord,
    [all...]
  /external/guava/guava/src/com/google/common/primitives/
Booleans.java 405 boolean oldValue = array[start + index];
407 return oldValue;
Bytes.java 322 byte oldValue = array[start + index];
324 return oldValue;
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
Longs.java 446 long oldValue = array[start + index];
448 return oldValue;
  /external/guava/guava-tests/test/com/google/common/collect/
LinkedListMultimapTest.java 296 int oldValue = entrya.setValue(2);
297 assertEquals(1, oldValue);
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 499 MessageItem oldValue, MessageItem newValue) {
500 oldValue.cancelPduLoading();
  /dalvik/vm/
Profile.cpp 241 int oldValue, newValue;
245 oldValue = gDvm.activeProfilers;
246 newValue = oldValue + (enable ? 1 : -1);
251 } while (android_atomic_release_cas(oldValue, newValue,
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tools.pas 654 oldValue: TValue;
660 oldValue := FItems[index].Value;
770 oldValue: TValue;
818 oldValue := FItems[gap].Value;

Completed in 2241 milliseconds

1 2 3 45 6 7 8 91011