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

/frameworks/base/core/java/android/animation/
H A DFloatKeyframeSet.java35 private float lastValue; field in class:FloatKeyframeSet
65 lastValue = ((FloatKeyframe) mKeyframes.get(1)).getFloatValue();
66 deltaValue = lastValue - firstValue;
74 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).floatValue();
H A DIntKeyframeSet.java35 private int lastValue; field in class:IntKeyframeSet
65 lastValue = ((IntKeyframe) mKeyframes.get(1)).getIntValue();
66 deltaValue = lastValue - firstValue;
74 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).intValue();
/frameworks/base/core/jni/
H A Dandroid_os_Parcel.cpp156 static void android_os_Parcel_restoreAllowFds(JNIEnv* env, jclass clazz, jint nativePtr, jboolean lastValue) argument
160 parcel->restoreAllowFds((bool)lastValue);
/frameworks/base/core/java/android/os/
H A DParcel.java241 private static native void nativeRestoreAllowFds(int nativePtr, boolean lastValue); argument
401 public final void restoreAllowFds(boolean lastValue) { argument
402 nativeRestoreAllowFds(mNativePtr, lastValue);
/frameworks/native/libs/binder/
H A DParcel.cpp459 void Parcel::restoreAllowFds(bool lastValue) argument
461 mAllowFds = lastValue;

Completed in 241 milliseconds