Home
last modified time | relevance | path

Searched refs:curTime (Results 1 – 3 of 3) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchFragment.java237 long curTime = Utils.getTimeNow(); in rightButtonAction() local
238 mAccumulatedTime += (curTime - mStartTime); in rightButtonAction()
626 long curTime = time - mStartTime + mAccumulatedTime; in addLapTime() local
629 Lap firstLap = new Lap(curTime, curTime); in addLapTime()
631 mLapsAdapter.addLap(new Lap(0, curTime)); in addLapTime()
632 mTime.setIntervalTime(curTime); in addLapTime()
635 long lapTime = curTime - ((Lap) mLapsAdapter.getItem(1)).mTotalTime; in addLapTime()
637 ((Lap)mLapsAdapter.getItem(0)).mTotalTime = curTime; in addLapTime()
679 long curTime = Utils.getTimeNow();
680 long totalTime = mAccumulatedTime + (curTime - mStartTime);
/packages/apps/Launcher2/src/com/android/launcher2/
DDeleteDropTarget.java336 long curTime = AnimationUtils.currentAnimationTimeMillis();
348 mFrom.left += (mVelocity.x * (curTime - mPrevTime) / 1000f);
349 mFrom.top += (mVelocity.y * (curTime - mPrevTime) / 1000f);
357 mPrevTime = curTime;
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppManager.java158 long curTime = SystemClock.elapsedRealtime(); in cleanupWhitelist() local
161 if (curTime - entry.second > WHITELIST_DURATION_MS) { in cleanupWhitelist()