Home
last modified time | relevance | path

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

/tools/loganalysis/src/com/android/loganalysis/parser/
DBatteryStatsSummaryInfoParser.java63 Matcher resetTimeMatcher = null; in parse() local
70 resetTimeMatcher = RESET_TIME_PATTERN.matcher(line); in parse()
72 if (resetTimeMatcher.matches()) { in parse()
74 final int year = Integer.parseInt(resetTimeMatcher.group(1)); in parse()
75 final int month = Integer.parseInt(resetTimeMatcher.group(2)); in parse()
76 final int day = Integer.parseInt(resetTimeMatcher.group(3)); in parse()
77 final int hour = Integer.parseInt(resetTimeMatcher.group(4)); in parse()
78 final int minute = Integer.parseInt(resetTimeMatcher.group(5)); in parse()
79 final int second = Integer.parseInt(resetTimeMatcher.group(6)); in parse()