Searched refs:mLastTime (Results 1 - 3 of 3) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
H A DSpriteTextRenderer.java177 if (mLastTime != 0) {
178 long delta = time - mLastTime;
181 mLastTime = time;
278 private long mLastTime; field in class:SpriteTextRenderer
/development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/
H A DImagePixelization.java65 long mLastTime = 0; field in class:ImagePixelization
108 if ((System.currentTimeMillis() - mLastTime) > TIME_BETWEEN_TASKS) {
262 mLastTime = System.currentTimeMillis();
/development/samples/LunarLander/src/com/example/android/lunarlander/
H A DLunarView.java182 private long mLastTime; field in class:LunarView.LunarThread
308 mLastTime = System.currentTimeMillis() + 100;
535 mLastTime = System.currentTimeMillis() + 100;
690 // Do nothing if mLastTime is in the future.
693 if (mLastTime > now) return;
695 double elapsed = (now - mLastTime) / 1000.0;
748 mLastTime = now;

Completed in 312 milliseconds