Home
last modified time | relevance | path

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

/cts/common/util/src/com/android/compatibility/common/util/
DReportLog.java30 private static final String LOG_SEPARATOR = "+++"; field in ReportLog
201 StringTokenizer detailedTok = new StringTokenizer(tok.nextToken(), LOG_SEPARATOR); in fromEncodedString()
222 builder.append(LOG_SEPARATOR); in toEncodedString()
225 if (builder.length() >= LOG_SEPARATOR.length()) { in toEncodedString()
226 builder.delete(builder.length() - LOG_SEPARATOR.length(), builder.length()); in toEncodedString()
/cts/libs/commonutil/src/com/android/cts/util/
DReportLog.java35 private static final String LOG_SEPARATOR = "+++"; field in ReportLog
156 builder.append(LOG_SEPARATOR); in generateReport()
159 if (builder.length() >= LOG_SEPARATOR.length()) { in generateReport()
160 builder.delete(builder.length() - LOG_SEPARATOR.length(), builder.length()); in generateReport()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
DTest.java50 private static final String LOG_SEPARATOR = "\\+\\+\\+"; field in Test
275 String[] arrays = details.split(LOG_SEPARATOR); in parseDetails()