HomeSort by relevance Sort by last modified time
    Searched full:lastvalue (Results 1 - 23 of 23) sorted by null

  /frameworks/base/core/java/android/animation/
FloatKeyframeSet.java 36 private float lastValue;
72 lastValue = ((FloatKeyframe) mKeyframes.get(1)).getFloatValue();
73 deltaValue = lastValue - firstValue;
81 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).floatValue();
IntKeyframeSet.java 36 private int lastValue;
72 lastValue = ((IntKeyframe) mKeyframes.get(1)).getIntValue();
73 deltaValue = lastValue - firstValue;
81 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).intValue();
  /system/core/libutils/tests/
LruCache_test.cpp 84 EntryRemovedCallback() : callbackCount(0), lastKey(-1), lastValue(NULL) { }
89 lastValue = v;
93 StringValue lastValue;
275 EXPECT_STREQ("one", callback.lastValue);
  /external/guava/guava/src/com/google/common/collect/
TreeBasedTable.java 353 C lastValue;
360 lastValue != null && comparator.compare(next, lastValue) == 0;
364 lastValue = next;
365 return lastValue;
369 lastValue = null; // clear reference to unused data
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationTest.java 148 float lastValue = 0.0f;
151 assertTrue(alphaValue >= lastValue);
154 lastValue = alphaValue;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
feedparser.py 436 lastvalue = []
447 lastvalue.append(line)
451 lhdr = EMPTYSTRING.join(lastvalue)[:-1].rstrip('\r\n')
453 lastheader, lastvalue = '', []
482 lastvalue = [line[i+1:].lstrip()]
486 self._cur[lastheader] = EMPTYSTRING.join(lastvalue).rstrip('\r\n')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
feedparser.py 436 lastvalue = []
447 lastvalue.append(line)
451 lhdr = EMPTYSTRING.join(lastvalue)[:-1].rstrip('\r\n')
453 lastheader, lastvalue = '', []
482 lastvalue = [line[i+1:].lstrip()]
486 self._cur[lastheader] = EMPTYSTRING.join(lastvalue).rstrip('\r\n')
  /external/clang/include/clang/AST/
ExternalASTSource.h 381 : ExternalSource(Source), LastGeneration(0), LastValue(Value) {}
384 T LastValue;
414 LazyVal->LastValue = NewValue;
430 return LazyVal->LastValue;
438 return LazyVal->LastValue;
Decl.h 488 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue; }
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java     [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 354 int lastValue = -1;
357 if (currentValue <= lastValue)
360 lastValue = currentValue;
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/
v8-raytrace.html     [all...]
  /frameworks/base/core/jni/
android_os_Parcel.cpp 155 static void android_os_Parcel_restoreAllowFds(JNIEnv* env, jclass clazz, jlong nativePtr, jboolean lastValue)
159 parcel->restoreAllowFds((bool)lastValue);
  /external/deqp/modules/gles31/functional/
es31fAtomicCounterTests.cpp 714 const deUint32 lastValue = initialValue + (spec.useBranches ? spec.threadCount*spec.callCount - spec.threadCount*spec.callCount/2 : 0) - (spec.useBranches ? spec.threadCount*spec.callCount/2 : 0);
763 if (incrementCounts[pos] > 0 && pos >= (int)(lastValue - minValue))
788 if (minValue + pos != lastValue)
    [all...]
  /frameworks/native/include/binder/
Parcel.h 64 void restoreAllowFds(bool lastValue);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js     [all...]
concat-jquery-mootools-prototype.js     [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
prototype-1.7.js     [all...]
  /frameworks/native/libs/binder/
Parcel.cpp 488 void Parcel::restoreAllowFds(bool lastValue)
490 mAllowFds = lastValue;
    [all...]
  /frameworks/base/core/java/android/os/
Parcel.java 251 private static native void nativeRestoreAllowFds(long nativePtr, boolean lastValue);
419 public final void restoreAllowFds(boolean lastValue) {
420 nativeRestoreAllowFds(mNativePtr, lastValue);
    [all...]
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 

Completed in 2830 milliseconds