Searched refs:startMs (Results 1 – 3 of 3) sorted by relevance
79 long startMs = System.currentTimeMillis();81 long durationMs = System.currentTimeMillis() - startMs;
500 int startMs = Integer.parseInt(tokens.nextToken());503 assertTrue("The diff between subtitle's start time " + startMs +506 (posMs >= startMs - toleranceMs) &&507 (posMs < startMs + durationMs + toleranceMs) );511 assertTrue("timed text start time did not increase; current: " + startMs +513 !mCheckStartTimeIncrease || startMs > mPrevStartMs);514 mPrevStartMs = startMs;
1123 long startMs = System.currentTimeMillis(); in run() local