Home | History | Annotate | Download | only in tests

Lines Matching defs:keyPrefix

273             Map<String, String> metrics, String keyprefix, float fps, boolean lipsync) {
281 CLog.i("== Video Multimeter Result '%s' ==", keyprefix);
285 metrics.put(keyprefix + "frame_captured", nrOfDataPointsStr);
289 Assert.assertTrue("Multimeter did not collect any data for " + keyprefix,
298 keyprefix, LogDataType.TEXT, new ByteArrayInputStreamSource(allData.getBytes()));
301 return parseResult(metrics, nrOfDataPoints, allData, keyprefix, fps, lipsync);
323 String keyPrefix = videoInfo[1].trim();
327 metrics = getResult(listener, metrics, keyPrefix, fps, true);
362 long frameCaptured, String result, String keyprefix, float fps,
393 metrics.put(keyprefix + "frame_captured", String.valueOf(frameCount));
420 CLog.w("No result found for " + keyprefix);
423 metrics.put(keyprefix + "frame_drop", totalDropFrame);
428 metrics.put(keyprefix + "smoothness", String.valueOf(smoothnessScore));
434 metrics.put(keyprefix + "freezing", String.valueOf(freezingScore));
471 metrics.put(keyprefix + "lipsync_count", String.valueOf(lipsyncCount));
473 metrics.put(keyprefix + "lipsync_min", String.valueOf(lipsyncVals.get(0)));
475 metrics.put(keyprefix + "lipsync_max", String.valueOf(maxLipsync));
478 metrics.put(keyprefix + "lipsync_mean", String.valueOf(meanLipSync));
484 CLog.i("== End ==", keyprefix);