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

  /external/skia/src/views/
SkProgressView.cpp 19 fInterp = NULL;
25 delete fInterp;
46 if (fInterp)
47 delete fInterp;
48 fInterp = new SkInterpolator(1, 2);
50 fInterp->setKeyFrame(0, SkTime::GetMSecs(), &x, 0);
52 fInterp->setKeyFrame(1, SkTime::GetMSecs() + 333, &x);
66 if (fInterp)
69 if (fInterp->timeToValues(SkTime::GetMSecs(), &x) == SkInterpolator::kFreezeEnd_Result)
71 delete fInterp;
    [all...]
SkWidget.cpp 33 Interp(const SkString& old, SkMSec now, SkMSec dur, AnimaDir dir) : fOldText(old), fInterp(1, 2)
36 fInterp.setKeyFrame(0, now, &x, 0);
40 fInterp.setKeyFrame(1, now + dur, &x);
46 if (fInterp.timeToValues(SkTime::GetMSecs(), &scale) == SkInterpolator::kFreezeEnd_Result)
75 SkInterpolator fInterp;
78 SkTextView::SkTextView(U32 flags) : SkView(flags), fInterp(NULL), fDoInterp(false)
85 delete fInterp;
124 if (fInterp)
125 delete fInterp;
126 fInterp = new Interp(fText, SkTime::GetMSecs(), 500, dir)
    [all...]
  /external/skia/samplecode/
ClockFaceView.cpp 170 SkScalar fInterp;
176 fInterp = 0;
236 apply_shader(&paint, fInterp);
242 fInterp += fDx;
243 if (fInterp > 1) {
244 fInterp = 1;
246 } else if (fInterp < 0) {
247 fInterp = 0;
TransitionView.cpp 25 TransitionView(SkView* prev, SkView* next, int direction) : fInterp(4, 2){
106 SkInterpolator::Result result = fInterp.timeToValues(SkTime::GetMSecs(), values);
150 fInterp.setKeyFrame(0, SkTime::GetMSecs(), fBegin, blend);
151 fInterp.setKeyFrame(1, SkTime::GetMSecs()+500, fEnd, blend);
164 SkInterpolator fInterp;
  /external/skia/include/views/
SkWidget.h 283 SkInterpolator* fInterp;
321 Interp* fInterp;

Completed in 1600 milliseconds