Searched refs:metricName (Results 1 – 2 of 2) sorted by relevance
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | MetricsXmlParser.java | 96 String metricName = getMandatoryAttribute(name, "name", attributes); in startElement() local 98 if (!mBlacklistMetrics.contains(metricName)) { in startElement() 99 mMetrics.addRunMetric(metricName, metricValue); in startElement() 103 String metricName = getMandatoryAttribute(name, "name", attributes); in startElement() local 105 if (!mBlacklistMetrics.contains(metricName)) { in startElement() 106 mMetrics.addTestMetric(mCurrentTest, metricName, metricValue); in startElement()
|
/tools/tradefederation/contrib/src/com/android/media/tests/ |
D | AudioJitterTest.java | 146 String metricName = tokens[0]; in parseResult() local 148 if (METRICS_KEY_MAP.containsKey(metricName)) { in parseResult() 149 CLog.i(String.format("%s: %s", metricName, metricValue)); in parseResult() 150 resultMap.put(METRICS_KEY_MAP.get(metricName), metricValue); in parseResult()
|