Home | History | Annotate | Download | only in animator

Lines Matching defs:time

167 void SkActive::create(SkADrawable* drawable, SkMSec time) {
168 fApply.fLastTime = time;
180 fApply.applyValues(index, values.begin(), count, animate->getValuesType(), time);
183 interpolator.timeToValues(time, values.get());
184 fApply.applyValues(index, values.get(), count, animate->getValuesType(), time);
192 SkMSec time = 0;
198 fApply.fLastTime = time;
205 if (state.fBegin > time)
207 if (time > state.fBegin + state.fDuration)
218 fApply.applyValues(index, values.begin(), count, animate->getValuesType(), time);
221 interpolator.timeToValues(time, values.get());
222 fApply.applyValues(index, values.get(), count, animate->getValuesType(), time);
229 time += SK_MSec1;
230 } while (time <= final);
417 SkMSec time = fMaker.getAppTime();
418 debugOut.appendS32(time - fMaker.fDebugTimeBase);
492 SkMSec SkActive::SkState::getRelativeTime(SkMSec time) {
493 SkMSec result = time;
498 if (SkMSec_LT(fDuration, time))
501 result = fDuration - time;