Home | History | Annotate | Download | only in lunarlander

Lines Matching defs:mLastTime

182         private long mLastTime;
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;