Searched refs:SmartMonkeyLogItem (Results 1 – 4 of 4) sorted by relevance
34 SmartMonkeyLogItem item = new SmartMonkeyLogItem(); in testToJson()43 assertTrue(output.has(SmartMonkeyLogItem.APPLICATIONS)); in testToJson()44 assertTrue(output.get(SmartMonkeyLogItem.APPLICATIONS) instanceof JSONArray); in testToJson()45 assertTrue(output.has(SmartMonkeyLogItem.PACKAGES)); in testToJson()46 assertTrue(output.get(SmartMonkeyLogItem.PACKAGES) instanceof JSONArray); in testToJson()47 assertTrue(output.has(SmartMonkeyLogItem.ANR_TIMES)); in testToJson()48 assertTrue(output.get(SmartMonkeyLogItem.ANR_TIMES) instanceof JSONArray); in testToJson()49 assertTrue(output.has(SmartMonkeyLogItem.CRASH_TIMES)); in testToJson()50 assertTrue(output.get(SmartMonkeyLogItem.CRASH_TIMES) instanceof JSONArray); in testToJson()
18 import com.android.loganalysis.item.SmartMonkeyLogItem;51 SmartMonkeyLogItem monkeyLog = new SmartMonkeyLogParser().parse(lines); in testExceptions()81 SmartMonkeyLogItem monkeyLog = new SmartMonkeyLogParser().parse(lines); in testHeader()112 SmartMonkeyLogItem monkeyLog = new SmartMonkeyLogParser().parse(lines); in testIntermidiateStop()140 SmartMonkeyLogItem monkeyLog = new SmartMonkeyLogParser().parse(lines); in testFooter()
18 import com.android.loganalysis.item.SmartMonkeyLogItem;77 private final SmartMonkeyLogItem mSmartMonkeyLog = new SmartMonkeyLogItem();87 public SmartMonkeyLogItem parse(BufferedReader input) throws IOException { in parse()101 public SmartMonkeyLogItem parse(List<String> lines) { in parse()
32 public class SmartMonkeyLogItem extends GenericItem { class79 public SmartMonkeyLogItem() { in SmartMonkeyLogItem() method in SmartMonkeyLogItem