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

1 2 3

  /external/skia/src/animator/
SkDisplayScreenplay.h 18 SkMSec time;
SkAnimateActive.h 26 void create(SkDrawable* scope, SkMSec time);
30 SkMSec getTime(SkMSec inTime, int animatorIndex);
51 SkMSec getRelativeTime(SkMSec time);
59 SkMSec fBegin;
60 SkMSec fStartTime;
61 SkMSec fDuration;
62 SkMSec fSave;
63 SkMSec fTicks
    [all...]
SkOperandInterpolator.h 35 bool setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend = SK_Scalar1);
36 Result timeToValues(SkMSec time, SkOperand values[]) const;
SkAnimateMaker.h 53 void delayEnable(SkApply* apply, SkMSec time);
73 SkMSec getAppTime() const; // call caller to get current time
78 SkMSec getInTime() { return fDisplayList.getTime(); }
87 void notifyInvalTime(SkMSec time);
88 void postOnEnd(SkAnimateBase* animate, SkMSec end);
92 void setEnableTime(SkMSec appTime, SkMSec expectedTime);
107 SkMSec fAdjustedStart;
109 SkMSec fEnableTime;
114 SkMSec fMinimumInterval
    [all...]
SkAnimateBase.h 37 SkMSec getStart() const { return fStart; }
50 SkMSec begin;
52 SkMSec dur;
64 SkMSec fStart; // corrected time when this apply was enabled
SkDisplayApply.h 40 SkDisplayTypes , SkMSec time);
62 bool interpolate(SkAnimateMaker& , SkMSec time);
73 // virtual void setTime(SkMSec time);
78 SkMSec begin;
81 SkMSec interval;
93 SkMSec fLastTime; // used only to return script property time
SkTime.cpp 15 SkMSec gForceTickCount = (SkMSec) -1;
35 SkMSec SkTime::GetMSecs()
38 if (gForceTickCount != (SkMSec) -1)
69 SkMSec SkTime::GetMSecs()
SkDisplayList.h 31 bool draw(SkAnimateMaker& , SkMSec time);
41 SkMSec getTime() { return fInTime; }
66 SkMSec fInTime;
SkDisplayPost.h 42 SkMSec delay;
SkOperand.h 28 SkMSec fMSec;
41 SkMSec getMSec() { SkASSERT(fType == SkType_MSec); return fOperand.fMSec; }
SkAnimateMaker.cpp 25 virtual SkMSec getMSecs() const {
32 fHostEventSinkID(0), fMinimumInterval((SkMSec) -1), fPaint(paint), fParentMaker(NULL),
38 fDebugTimeBase = (SkMSec) -1;
50 SkMSec SkAnimateMaker::adjustDelay(SkMSec expectedBase, SkMSec delay) {
51 SkMSec appTime = (*fTimeCallBack)();
122 void SkAnimateMaker::delayEnable(SkApply* apply, SkMSec time) {
204 SkMSec SkAnimateMaker::getAppTime() const {
248 void SkAnimateMaker::notifyInvalTime(SkMSec time)
    [all...]
  /external/skia/include/images/
SkMovie.h 37 SkMSec duration();
47 bool setTime(SkMSec);
54 SkMSec fDuration;
61 virtual bool onSetTime(SkMSec) = 0;
69 SkMSec fCurrTime;
  /external/skia/include/core/
SkTime.h 31 static SkMSec GetMSecs();
35 extern SkMSec gForceTickCount;
46 SkAutoTime(const char* label = NULL, SkMSec minToDump = 0) : fLabel(label)
53 SkMSec dur = SkTime::GetMSecs() - fNow;
60 SkMSec fNow;
61 SkMSec fMinToDump;
  /external/skia/include/utils/
SkInterpolator.h 38 bool getDuration(SkMSec* startTime, SkMSec* endTime) const;
62 Result timeToT(SkMSec time, SkScalar* T, int* index, SkBool* exact) const;
70 static SkScalar ComputeRelativeT(SkMSec time, SkMSec prevTime,
71 SkMSec nextTime, const SkScalar blend[4] = NULL);
77 SkMSec fTime;
104 bool setKeyFrame(int index, SkMSec time, const SkScalar values[],
114 Result timeToValues(SkMSec time, SkScalar values[] = NULL) const;
SkParse.h 21 static const char* FindMSec(const char str[], SkMSec* value);
  /external/skia/include/views/
SkOSWindow_SDL.h 23 static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
SkEvent.h 206 void postDelay(SkMSec delay);
216 void postTime(SkMSec time);
259 static void SignalQueueTimer(SkMSec delay);
283 SkMSec fTime;
289 static SkMSec EnqueueTime(SkEvent* evt, SkMSec time);
SkTouchGesture.h 58 SkMSec fPrevT, fLastT;
65 SkMSec fLastUpT;
SkEventSink.h 71 void postToListeners(const SkEvent& evt, SkMSec delay = 0);
SkOSWindow_Win.h 24 static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
  /external/skia/src/images/
SkMovie.cpp 14 #define UNINITIALIZED_MSEC ((SkMSec)-1)
29 SkMSec SkMovie::duration()
53 bool SkMovie::setTime(SkMSec time)
55 SkMSec dur = this->duration();
  /external/skia/src/ports/
SkTime_Unix.cpp 34 SkMSec SkTime::GetMSecs()
38 return (SkMSec) (tv.tv_sec * 1000 + tv.tv_usec / 1000 ); // microseconds to milliseconds
SkTime_win.cpp 29 SkMSec SkTime::GetMSecs()
37 return (SkMSec)(t / 10000); /* In milliseconds */
  /external/skia/src/utils/
SkInterpolator.cpp 47 bool SkInterpolatorBase::getDuration(SkMSec* startTime, SkMSec* endTime) const {
61 SkScalar SkInterpolatorBase::ComputeRelativeT(SkMSec time, SkMSec prevTime,
62 SkMSec nextTime, const SkScalar blend[4]) {
71 SkInterpolatorBase::Result SkInterpolatorBase::timeToT(SkMSec time, SkScalar* T,
76 SkMSec startTime = 0, endTime = 0; // initialize to avoid warning
78 SkMSec totalTime = endTime - startTime;
79 SkMSec offsetTime = time - startTime;
96 int index = SkTSearch<SkMSec>(&fTimes[0].fTime, fFrameCount, time
    [all...]
  /external/skia/include/animator/
SkAnimator.h 185 DifferenceType draw(SkCanvas* canvas, SkPaint* paint, SkMSec time);
198 DifferenceType draw(SkCanvas* canvas, SkMSec time);
314 SkMSec getInterval();
442 virtual SkMSec getMSecs() const = 0;
478 virtual void onEventPostTime(SkEvent*, SkEventSinkID, SkMSec time);

Completed in 525 milliseconds

1 2 3