Searched defs:lastValue (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java36 private float lastValue; field in class:FloatKeyframeSet
72 lastValue = ((FloatKeyframe) mKeyframes.get(1)).getFloatValue();
73 deltaValue = lastValue - firstValue;
81 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).floatValue();
H A DIntKeyframeSet.java36 private int lastValue; field in class:IntKeyframeSet
72 lastValue = ((IntKeyframe) mKeyframes.get(1)).getIntValue();
73 deltaValue = lastValue - firstValue;
81 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).intValue();
/frameworks/base/core/jni/
H A Dandroid_os_Parcel.cpp155 static void android_os_Parcel_restoreAllowFds(JNIEnv* env, jclass clazz, jlong nativePtr, jboolean lastValue) argument
159 parcel->restoreAllowFds((bool)lastValue);
/frameworks/native/libs/binder/
H A DParcel.cpp488 void Parcel::restoreAllowFds(bool lastValue) argument
490 mAllowFds = lastValue;
/frameworks/base/core/java/android/os/
H A DParcel.java251 private static native void nativeRestoreAllowFds(long nativePtr, boolean lastValue); argument
419 public final void restoreAllowFds(boolean lastValue) { argument
420 nativeRestoreAllowFds(mNativePtr, lastValue);

Completed in 79 milliseconds