Home
last modified time | relevance | path

Searched refs:GetMSecs (Results 1 – 20 of 20) sorted by relevance

/external/skia/tests/
DStrokerTest.cpp46 SkMSec limit = SkTime::GetMSecs() + MS_TEST_DURATION; in cubicSetTest()
52 if (FLAGS_timeout && SkTime::GetMSecs() > limit) { in cubicSetTest()
59 SkMSec limit = SkTime::GetMSecs() + MS_TEST_DURATION; in cubicPairSetTest()
66 if (FLAGS_timeout && SkTime::GetMSecs() > limit) { in cubicPairSetTest()
74 SkMSec limit = SkTime::GetMSecs() + MS_TEST_DURATION; in quadSetTest()
80 if (FLAGS_timeout && SkTime::GetMSecs() > limit) { in quadSetTest()
87 SkMSec limit = SkTime::GetMSecs() + MS_TEST_DURATION; in quadPairSetTest()
94 if (FLAGS_timeout && SkTime::GetMSecs() > limit) { in quadPairSetTest()
137 SkMSec limit = SkTime::GetMSecs() + MS_TEST_DURATION; in DEF_TEST()
156 if (FLAGS_timeout && SkTime::GetMSecs() > limit) { in DEF_TEST()
[all …]
Dskia_test.cpp98 const SkMSec start = SkTime::GetMSecs(); in operator ()()
100 SkMSec elapsed = SkTime::GetMSecs() - start; in operator ()()
DSkpSkGrTest.cpp346 SkMSec start = SkTime::GetMSecs(); in timePict()
354 SkMSec end = SkTime::GetMSecs(); in timePict()
DPathOpsSkpClipTest.cpp405 SkMSec start = SkTime::GetMSecs(); in timePict()
413 SkMSec end = SkTime::GetMSecs(); in timePict()
/external/skia/include/core/
DSkTime.h37 static SkMSec GetMSecs() { return (SkMSec)(GetNSecs() * 1e-6); } in GetMSecs() function
51 fNow = SkTime::GetMSecs(); in fLabel()
56 SkMSec dur = SkTime::GetMSecs() - fNow; in ~SkAutoTime()
/external/skia/gm/
DSkAnimTimer.h73 fCurrTime = SkTime::GetMSecs(); in updateTime()
123 fBaseTime = fCurrTime = SkTime::GetMSecs(); in setState()
126 SkMSec now = SkTime::GetMSecs(); in setState()
/external/skia/samplecode/
DSampleClipDrawMatch.cpp124 fTrans.setKeyFrame(0, SkTime::GetMSecs() + 1000, values); in ClipDrawMatchView()
126 fTrans.setKeyFrame(1, SkTime::GetMSecs() + 2000, values); in ClipDrawMatchView()
128 fTrans.setKeyFrame(2, SkTime::GetMSecs() + 3000, values); in ClipDrawMatchView()
130 fTrans.setKeyFrame(3, SkTime::GetMSecs() + 4000, values); in ClipDrawMatchView()
132 fTrans.setKeyFrame(4, SkTime::GetMSecs() + 5000, values); in ClipDrawMatchView()
234 fTrans.timeToValues(SkTime::GetMSecs(), trans); in onDrawContent()
/external/skia/src/views/
DSkTouchGesture.cpp27 return SkTime::GetMSecs() * 0.001; in getseconds()
118 fLastUpT = SkTime::GetMSecs() - 2*MAX_DBL_TAP_INTERVAL; in reset()
141 rec->fLastT = rec->fPrevT = SkTime::GetMSecs(); in appendNewRec()
230 rec.fPrevT = rec.fLastT; rec.fLastT = SkTime::GetMSecs(); in touchMoved()
313 SkMSec now = SkTime::GetMSecs(); in handleDblTap()
DSkProgressView.cpp50 fInterp->setKeyFrame(0, SkTime::GetMSecs(), &x, 0); in setValue()
52 fInterp->setKeyFrame(1, SkTime::GetMSecs() + 333, &x); in setValue()
69 if (fInterp->timeToValues(SkTime::GetMSecs(), &x) == SkInterpolator::kFreezeEnd_Result) in onDraw()
DSkEvent.cpp301 this->postTime(SkTime::GetMSecs() + delay); in postDelay()
407 SkMSec delay = globals.fDelayQHead->fTime - SkTime::GetMSecs(); in EnqueueTime()
439 SkMSec now = SkTime::GetMSecs(); in ServiceQueueTimer()
DSkWidgets.cpp284 anim->draw(canvas, &paint, SkTime::GetMSecs());
/external/skia/src/views/animated/
DSkBorderView.cpp52 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); in onDraw()
DSkProgressBarView.cpp35 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); in onDraw()
DSkScrollBarView.cpp89 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); in onDraw()
DSkImageView.cpp170 SkMSec now = SkTime::GetMSecs(); in onDraw()
DSkWidgetViews.cpp296 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); in onDraw()
/external/skia/src/images/
DSkImageDecoder_libwebp.cpp141 fNow = SkTime::GetMSecs(); in AutoTimeMillis()
144 SkDebugf("---- Time (ms): %s %d\n", fLabel, SkTime::GetMSecs() - fNow); in ~AutoTimeMillis()
/external/skia/src/pdf/
DSkPDFMetadata.cpp58 SkMSec msec = SkTime::GetMSecs(); in uuid()
/external/skia/src/animator/
DSkAnimateMaker.cpp26 return SkTime::GetMSecs(); in getMSecs()
/external/skia/dm/
DDM.cpp117 static SkMSec start_ms = SkTime::GetMSecs(); in print_status()
121 SkString elapsed = HumanizeMs(SkTime::GetMSecs() - start_ms); in print_status()