Home
last modified time | relevance | path

Searched refs:processNewLines (Results 1 – 24 of 24) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DNativeStressTestParserTest.java43 mParser.processNewLines(new String[] {}); in testParse_empty()
54 mParser.processNewLines(new String[] {"blah blah", "more blah"}); in testParse_garbage()
65 mParser.processNewLines(new String[] {"==== Completed pass: 0"}); in testParse_oneIteration()
76 mParser.processNewLines(new String[] {"====Completedpass:0succeeded", in testParse_whitespace()
86 mParser.processNewLines(new String[] {"==== Completed pass: 0", "==== Completed pass: 1", in testParse_invalidIterationValue()
96 mParser.processNewLines(new String[] {"==== Completed pass: 0", "==== pass: 1 failed"}); in testParse_failedIteration()
DNativeBenchmarkTestParserTest.java39 mParser.processNewLines(new String[] {"Time per iteration min: 5 avg: 55 max: 35"}); in testParse_allInts()
51 mParser.processNewLines(new String[] { in testParse_allFloats()
64 mParser.processNewLines(new String[] { in testParse_scientific()
DGTestResultParserTest.java53 resultParser.processNewLines(contents); in testParseSimpleFile()
79 resultParser.processNewLines(contents); in testParseSimpleFileNoTimes()
96 resultParser.processNewLines(contents); in testParseNoTests()
122 resultParser.processNewLines(contents); in testParseLargerFile()
185 resultParser.processNewLines(contents); in testParseWithFailures()
238 resultParser.processNewLines(contents); in testParseWithErrors()
263 resultParser.processNewLines(contents); in testParseNonAlignedTag()
315 resultParser.processNewLines(contents); in testParseSimpleFile_AltFormat()
333 resultParser.processNewLines(contents); in testParseSimpleFile_LinkError()
DGTestListTestParserTest.java52 parser.processNewLines(contents); in testParseSimpleList()
78 parser.processNewLines(contents); in testParseMultiClassList()
93 parser.processNewLines(contents); in testParseMalformedList()
127 parser.processNewLines(contents); in testParseSimpleList_withSpecialChar()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DDumpsysPackageReceiverTest.java37 p.processNewLines(froyoPkgTxt); in testParse_classic()
57 p.processNewLines(pkgTxt); in testParse_future()
79 p.processNewLines(pkgsTxt); in testParse_hidden()
DTopHelperTest.java55 mTop.getReceiver().processNewLines(lines.split("\r\n")); in testTopParser_parse()
90 mTop.getReceiver().processNewLines(lines.split("\r\n")); in testTopParser_stats()
DCpuStatsCollectorTest.java154 mCollector.getReceiver().processNewLines(SINGLE_OUTPUT); in testCpuStatsParser_single()
231 mCollector.getReceiver().processNewLines(SINGLE_NON_AGGREGATE_OUTPUT); in testCpuStatsParser_single_non_aggregate()
271 mCollector.getReceiver().processNewLines(MULTI_OUTPUT); in testCpuStatsParser_multi()
314 mCollector.getReceiver().processNewLines(MULTI_NON_AGGREGATE_OUTPUT); in testCpuStatsParser_multi_non_aggregate()
DTestDeviceTest.java1228 receiver.processNewLines(new String[] {"Success"}); in testInstallPackages()
1343 receiver.processNewLines(new String[] {"Success"}); in testInstallPackage_default_runtimePermissionNotSupported()
1371 receiver.processNewLines(new String[] {"Success"}); in testInstallPackage_default_runtimePermissionSupported()
1401 receiver.processNewLines(new String[] {"Success"}); in testinstallPackageForUser_default_runtimePermissionNotSupported()
1433 receiver.processNewLines(new String[] {"Success"}); in testinstallPackageForUser_default_runtimePermissionSupported()
1484 receiver.processNewLines(new String[] {"Success"}); in testInstallPackage_grant_runtimePermissionSupported()
1510 receiver.processNewLines(new String[] {}); in testInstallPackage_timeout()
1542 receiver.processNewLines(new String[] {"Success"}); in testInstallPackage_noGrant_runtimePermissionSupported()
1589 receiver.processNewLines(new String[] {"Success"}); in testInstallPackageForUser_grant_runtimePermissionSupported()
1622 receiver.processNewLines(new String[] {"Success"}); in testInstallPackageForUser_noGrant_runtimePermissionSupported()
/tools/tradefederation/core/src/com/android/tradefed/testtype/
DNativeStressTestParser.java64 public void processNewLines(String[] lines) { in processNewLines() method in NativeStressTestParser
DNativeBenchmarkTestParser.java66 public void processNewLines(String[] lines) { in processNewLines() method in NativeBenchmarkTestParser
DGTestListTestParser.java77 public void processNewLines(String[] lines) { in processNewLines() method in GTestListTestParser
DPythonUnitTestRunner.java214 parser.processNewLines(c.getStderr().split("\n")); in doRunTest()
DPythonUnitTestResultParser.java164 public void processNewLines(String[] lines) { in processNewLines() method in PythonUnitTestResultParser
DInstalledInstrumentationsTest.java262 parser.processNewLines(pmListLines); in buildTests()
DGTestResultParser.java262 public void processNewLines(String[] lines) { in processNewLines() method in GTestResultParser
/tools/tradefederation/core/src/com/android/tradefed/device/
DBatteryTemperature.java55 public void processNewLines(String[] lines) { in processNewLines() method in BatteryTemperature.DumpsysBatteryTemperatureReceiver
DDumpsysPackageReceiver.java217 public void processNewLines(String[] lines) { in processNewLines() method in DumpsysPackageReceiver
DTopHelper.java110 public void processNewLines(String[] lines) { in processNewLines() method in TopHelper.TopReceiver
DWifiHelper.java601 public void processNewLines(String[] lines) { in processNewLines() method in WifiHelper.WifiUtilOutput
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DListInstrumentationParserTest.java75 mParser.processNewLines(pmListOutput); in testSimpleParse()
DSubprocessTestResultsParserTest.java114 resultParser.processNewLines(contents); in testParse_randomEvents()
152 resultParser.processNewLines(contents); in testParse_invalidEventOrder()
/tools/tradefederation/core/src/com/android/tradefed/util/
DListInstrumentationParser.java132 public void processNewLines(String[] lines) { in processNewLines() method in ListInstrumentationParser
DSubprocessTestResultsParser.java269 processNewLines(listString.toArray(new String[listString.size()])); in parseFile()
275 public void processNewLines(String[] lines) { in processNewLines() method in SubprocessTestResultsParser
/tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
DMicroBenchTest.java177 public void processNewLines(String[] lines) { in processNewLines() method in MicroBenchTest.MicroBenchReceiver