Home
last modified time | relevance | path

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

/tools/loganalysis/tests/src/com/android/loganalysis/parser/
DMonkeyLogParserTest.java96 assertEquals(5, monkeyLog.getDroppedCount(DroppedCategory.KEYS).intValue()); in testParse_success()
97 assertEquals(6, monkeyLog.getDroppedCount(DroppedCategory.POINTERS).intValue()); in testParse_success()
98 assertEquals(7, monkeyLog.getDroppedCount(DroppedCategory.TRACKBALLS).intValue()); in testParse_success()
99 assertEquals(8, monkeyLog.getDroppedCount(DroppedCategory.FLIPS).intValue()); in testParse_success()
100 assertEquals(9, monkeyLog.getDroppedCount(DroppedCategory.ROTATIONS).intValue()); in testParse_success()
644 assertNull(monkeyLog.getDroppedCount(DroppedCategory.KEYS)); in testParse_no_activities()
645 assertNull(monkeyLog.getDroppedCount(DroppedCategory.POINTERS)); in testParse_no_activities()
646 assertNull(monkeyLog.getDroppedCount(DroppedCategory.TRACKBALLS)); in testParse_no_activities()
647 assertNull(monkeyLog.getDroppedCount(DroppedCategory.FLIPS)); in testParse_no_activities()
648 assertNull(monkeyLog.getDroppedCount(DroppedCategory.ROTATIONS)); in testParse_no_activities()
DMonkeyLogParserFuncTest.java94 monkeyLog.getDroppedCount(drop))); in testParse()
/tools/loganalysis/src/com/android/loganalysis/item/
DMonkeyLogItem.java322 public Integer getDroppedCount(DroppedCategory category) { in getDroppedCount() method in MonkeyLogItem