OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:toleranceMs
(Results
1 - 2
of
2
) sorted by null
/cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java
486
float
toleranceMs
= RECORDED_DUR_TOLERANCE_FRAMES * (1000f / frameRate);
488
duration, targetMs,
toleranceMs
),
489
duration <= targetMs +
toleranceMs
);
674
private void testSetMaxDuration(long durationMs, long
toleranceMs
) throws Exception {
682
if (!mMaxDurationCond.block(durationMs +
toleranceMs
)) {
688
checkRecordedTime(durationMs, actualDurationMs,
toleranceMs
);
[
all
...]
MediaPlayerTest.java
446
final int
toleranceMs
= 500;
460
" is over tolerance " +
toleranceMs
,
461
(posMs >= startMs -
toleranceMs
) &&
462
(posMs < startMs + durationMs +
toleranceMs
) );
[
all
...]
Completed in 69 milliseconds