Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DSimplePerfStatResultParserTest.java32 List<String> result = SimplePerfStatResultParser.parseSingleLine(emptyString); in testParseSingleLineWithEmptyString()
38 List<String> result = SimplePerfStatResultParser.parseSingleLine(nullString); in testParseSingleLineWithNullString()
44 List<String> result = SimplePerfStatResultParser.parseSingleLine(headerString); in testParseSingleLineWithHeaderString()
50 List<String> result = SimplePerfStatResultParser.parseSingleLine(returnString); in testParseSingleLineWithReturnString()
56 List<String> result = SimplePerfStatResultParser.parseSingleLine(randomString); in testParseSingleLineWithRandomString()
62 List<String> result = SimplePerfStatResultParser.parseSingleLine(validMetricString); in testParseSingleLineWithValidMetricString()
71 List<String> result = SimplePerfStatResultParser.parseSingleLine(validTotalTimeString); in testParseSingleLineWithValidTotalTimeString()
78 List<String> result = SimplePerfStatResultParser.parseSingleLine(multiplePoundString); in testParseSingleLineWithMultiplePoundString()
84 List<String> result = SimplePerfStatResultParser.parseSingleLine(multiplePoundString); in testParseSingleLineWithMultipleSpaceString()
90 SimplePerfResult result = SimplePerfStatResultParser.parseRawOutput(nullString); in testParseRawOutputWithNullString()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/util/
DSimplePerfStatResultParser.java33 public final class SimplePerfStatResultParser { class
43 private SimplePerfStatResultParser() { in SimplePerfStatResultParser() method in SimplePerfStatResultParser
DSimplePerfUtil.java96 return SimplePerfStatResultParser.parseRawOutput(output); in executeCommand()