HomeSort by relevance Sort by last modified time
    Searched refs:keyTime (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/animation/
KeyframeValueList.cpp 36 if (curValue->keyTime() == value->keyTime()) {
42 if (curValue->keyTime() > value->keyTime()) {
AnimationValue.h 45 explicit AnimationValue(double keyTime, PassRefPtr<TimingFunction> timingFunction = nullptr)
46 : m_keyTime(keyTime)
53 double keyTime() const { return m_keyTime; }
65 FloatAnimationValue(double keyTime, float value, PassRefPtr<TimingFunction> timingFunction = nullptr)
66 : AnimationValue(keyTime, timingFunction)
81 explicit TransformAnimationValue(double keyTime, const TransformOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = nullptr)
82 : AnimationValue(keyTime, timingFunction)
98 explicit FilterAnimationValue(double keyTime, const FilterOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = nullptr)
99 : AnimationValue(keyTime, timingFunction)
  /development/samples/JetBoy/src/com/example/android/jetboy/
JetBoyView.java 780 long keyTime = inputContext == null ? 0 : ((GameEvent)inputContext).eventTime;
782 // Log.d(TAG,"keyTime delta = " +
783 // (System.currentTimeMillis()-keyTime) + ": obj = " +
803 if (!mLaserOn && System.currentTimeMillis() - keyTime <= 400) {
806 mLaserFireTime = keyTime;
    [all...]

Completed in 3003 milliseconds