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/include/binder/
DParcel.h63 void restoreAllowFds(bool lastValue);
/frameworks/base/libs/binder/
DParcel.cpp459 void Parcel::restoreAllowFds(bool lastValue) in restoreAllowFds() argument
461 mAllowFds = lastValue; in restoreAllowFds()
/frameworks/base/core/jni/
Dandroid_util_Binder.cpp1316 static void android_os_Parcel_restoreAllowFds(JNIEnv* env, jobject clazz, jboolean lastValue) in android_os_Parcel_restoreAllowFds() argument
1320 parcel->restoreAllowFds((bool)lastValue); in android_os_Parcel_restoreAllowFds()
/frameworks/base/core/java/android/os/
DParcel.java330 public final native void restoreAllowFds(boolean lastValue); in restoreAllowFds() argument