Home
last modified time | relevance | path

Searched refs:lastValue (Results 1 – 6 of 6) sorted by relevance

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