Searched refs:LogcatParser (Results 1 – 10 of 10) sorted by relevance
48 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_anr()72 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_anr_pid()95 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_java_crash()135 LogcatParser logcatParser = new LogcatParser("2012"); in testParse_test_exception()136 logcatParser.addJavaCrashTag("I", "TestRunner", LogcatParser.JAVA_CRASH); in testParse_test_exception()145 assertEquals(LogcatParser.JAVA_CRASH, logcat.getJavaCrashes().get(0).getCategory()); in testParse_test_exception()172 LogcatParser logcatParser = new LogcatParser("2012"); in testParse_test_exception_with_exras()173 logcatParser.addJavaCrashTag("I", "TestRunner", LogcatParser.JAVA_CRASH); in testParse_test_exception_with_exras()200 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_java_crash_system_server()227 LogcatItem logcat = new LogcatParser("2012").parse(lines); in testParse_java_crash_process_pid()[all …]
49 logcat = new LogcatParser().parse(logcatReader); in testParse()
20 import com.android.loganalysis.parser.LogcatParser;117 LogcatParser parser = new LogcatParser(); in extractLogcat()
22 import com.android.loganalysis.parser.LogcatParser;53 private final LogcatParser mInternalParser = new LogcatParser();
18 import com.android.loganalysis.parser.LogcatParser;40 setCategory(LogcatParser.NATIVE_CRASH); in NativeCrashItem()
18 import com.android.loganalysis.parser.LogcatParser;42 setCategory(LogcatParser.JAVA_CRASH); in JavaCrashItem()
18 import com.android.loganalysis.parser.LogcatParser;69 setCategory(LogcatParser.ANR); in AnrItem()
47 public class LogcatParser implements IParser { class143 public LogcatParser() { in LogcatParser() method in LogcatParser156 public LogcatParser(String year) { in LogcatParser() method in LogcatParser
116 private LogcatParser mLogcatParser = new LogcatParser();
28 import com.android.loganalysis.parser.LogcatParser;124 LogcatItem logcat = new LogcatParser().parse(reader); in run()