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

  /external/chromium_org/third_party/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...]
  /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...]
  /external/chromium_org/third_party/skia/samplecode/
ClockFaceView.cpp 181 SkScalar fInterp;
187 fInterp = 0;
243 apply_shader(&paint, SkScalarToFloat(fInterp));
249 fInterp += fDx;
250 if (fInterp > 1) {
251 fInterp = 1;
253 } else if (fInterp < 0) {
254 fInterp = 0;
TransitionView.cpp 31 TransitionView(SkView* prev, SkView* next, int direction) : fInterp(4, 2){
118 SkInterpolator::Result result = fInterp.timeToValues(SkTime::GetMSecs(), values);
163 fInterp.setKeyFrame(0, SkTime::GetMSecs(), fBegin, blend);
164 fInterp.setKeyFrame(1, SkTime::GetMSecs()+kDurationMS, fEnd, blend);
177 SkInterpolator fInterp;
  /external/skia/samplecode/
ClockFaceView.cpp 166 SkScalar fInterp;
172 fInterp = 0;
228 apply_shader(&paint, SkScalarToFloat(fInterp));
234 fInterp += fDx;
235 if (fInterp > 1) {
236 fInterp = 1;
238 } else if (fInterp < 0) {
239 fInterp = 0;
TransitionView.cpp 31 TransitionView(SkView* prev, SkView* next, int direction) : fInterp(4, 2){
118 SkInterpolator::Result result = fInterp.timeToValues(SkTime::GetMSecs(), values);
163 fInterp.setKeyFrame(0, SkTime::GetMSecs(), fBegin, blend);
164 fInterp.setKeyFrame(1, SkTime::GetMSecs()+kDurationMS, fEnd, blend);
177 SkInterpolator fInterp;
  /external/chromium_org/third_party/skia/include/views/
SkWidget.h 268 SkInterpolator* fInterp;
  /external/skia/include/views/
SkWidget.h 268 SkInterpolator* fInterp;

Completed in 2431 milliseconds