HomeSort by relevance Sort by last modified time
    Searched refs:SkMSec (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/skia/src/animator/
SkDisplayScreenplay.h 26 SkMSec time;
SkAnimateActive.h 34 void create(SkDrawable* scope, SkMSec time);
38 SkMSec getTime(SkMSec inTime, int animatorIndex);
59 SkMSec getRelativeTime(SkMSec time);
67 SkMSec fBegin;
68 SkMSec fStartTime;
69 SkMSec fDuration;
70 SkMSec fSave;
71 SkMSec fTicks
    [all...]
SkOperandInterpolator.h 43 bool setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend = SK_Scalar1);
44 Result timeToValues(SkMSec time, SkOperand values[]) const;
SkAnimateMaker.h 61 void delayEnable(SkApply* apply, SkMSec time);
81 SkMSec getAppTime() const; // call caller to get current time
86 SkMSec getInTime() { return fDisplayList.getTime(); }
95 void notifyInvalTime(SkMSec time);
96 void postOnEnd(SkAnimateBase* animate, SkMSec end);
100 void setEnableTime(SkMSec appTime, SkMSec expectedTime);
115 SkMSec fAdjustedStart;
117 SkMSec fEnableTime;
122 SkMSec fMinimumInterval
    [all...]
SkAnimateBase.h 45 SkMSec getStart() const { return fStart; }
58 SkMSec begin;
60 SkMSec dur;
72 SkMSec fStart; // corrected time when this apply was enabled
SkDisplayApply.h 48 SkDisplayTypes , SkMSec time);
70 bool interpolate(SkAnimateMaker& , SkMSec time);
81 // virtual void setTime(SkMSec time);
86 SkMSec begin;
89 SkMSec interval;
101 SkMSec fLastTime; // used only to return script property time
SkTime.cpp 23 SkMSec gForceTickCount = (SkMSec) -1;
43 SkMSec SkTime::GetMSecs()
46 if (gForceTickCount != (SkMSec) -1)
77 SkMSec SkTime::GetMSecs()
SkDisplayList.h 39 bool draw(SkAnimateMaker& , SkMSec time);
49 SkMSec getTime() { return fInTime; }
74 SkMSec fInTime;
SkDisplayPost.h 50 SkMSec delay;
  /external/skia/src/ports/
SkOSEvent_dummy.cpp 25 void SkEvent::SignalQueueTimer(SkMSec delay)
SkTime_Unix.cpp 43 SkMSec SkTime::GetMSecs()
47 return (SkMSec) (tv.tv_sec * 1000 + tv.tv_usec / 1000 ); // microseconds to milliseconds
SkTime_win.cpp 37 SkMSec SkTime::GetMSecs()
45 return (SkMSec)(t / 10000); /* In milliseconds */
  /external/skia/include/images/
SkMovie.h 44 SkMSec duration();
54 bool setTime(SkMSec);
61 SkMSec fDuration;
68 virtual bool onSetTime(SkMSec) = 0;
76 SkMSec fCurrTime;
  /external/skia/include/core/
SkTime.h 38 static SkMSec GetMSecs();
42 extern SkMSec gForceTickCount;
53 SkAutoTime(const char* label = NULL, SkMSec minToDump = 0) : fLabel(label)
60 SkMSec dur = SkTime::GetMSecs() - fNow;
67 SkMSec fNow;
68 SkMSec fMinToDump;
  /external/skia/include/utils/
SkInterpolator.h 45 bool getDuration(SkMSec* startTime, SkMSec* endTime) const;
69 Result timeToT(SkMSec time, SkScalar* T, int* index, SkBool* exact) const;
77 static SkScalar ComputeRelativeT(SkMSec time, SkMSec prevTime,
78 SkMSec nextTime, const SkScalar blend[4] = NULL);
84 SkMSec fTime;
111 bool setKeyFrame(int index, SkMSec time, const SkScalar values[],
121 Result timeToValues(SkMSec time, SkScalar values[] = NULL) const;
SkParse.h 29 static const char* FindMSec(const char str[], SkMSec* value);
  /external/skia/include/views/
SkOSWindow_SDL.h 30 static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
SkOSWindow_Mac.h 31 static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
SkEvent.h 161 static bool Post(SkEvent* evt, SkEventSinkID targetID, SkMSec delay = 0);
167 static bool PostTime(SkEvent* evt, SkEventSinkID targetID, SkMSec time);
173 bool post(SkEventSinkID sinkID, SkMSec delay = 0)
178 void postTime(SkEventSinkID sinkID, SkMSec time)
224 static void SignalQueueTimer(SkMSec delay);
246 SkMSec fTime;
251 static SkMSec EnqueueTime(SkEvent* evt, SkMSec time);
SkTouchGesture.h 51 SkMSec fPrevT, fLastT;
58 SkMSec fLastUpT;
  /external/skia/src/images/
SkMovie.cpp 7 #define UNINITIALIZED_MSEC ((SkMSec)-1)
22 SkMSec SkMovie::duration()
46 bool SkMovie::setTime(SkMSec time)
48 SkMSec dur = this->duration();
  /external/skia/gpu/include/
GrTouchGesture.h 35 SkMSec fPrevT, fLastT;
42 SkMSec fLastUpT;
FlingState.h 54 SkMSec fTime0;
  /external/skia/src/utils/
SkInterpolator.cpp 54 bool SkInterpolatorBase::getDuration(SkMSec* startTime, SkMSec* endTime) const {
68 SkScalar SkInterpolatorBase::ComputeRelativeT(SkMSec time, SkMSec prevTime,
69 SkMSec nextTime, const SkScalar blend[4]) {
78 SkInterpolatorBase::Result SkInterpolatorBase::timeToT(SkMSec time, SkScalar* T,
83 SkMSec startTime = 0, endTime = 0; // initialize to avoid warning
85 SkMSec totalTime = endTime - startTime;
86 SkMSec offsetTime = time - startTime;
103 int index = SkTSearch<SkMSec>(&fTimes[0].fTime, fFrameCount, time
    [all...]
  /external/skia/samplecode/
SampleCode.h 22 static SkMSec GetAnimTime();
23 static SkMSec GetAnimTimeDelta();

Completed in 1858 milliseconds

1 2 3