Home
last modified time | relevance | path

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

/tools/loganalysis/src/com/android/loganalysis/parser/
DTraceFormatParser.java121 Matcher printfMatcher = PRINTF_SPECIFIERS.matcher(printfString); in parse() local
122 while (printfMatcher.find()) { in parse()
125 if (printfMatcher.group("num") != null) { in parse()
126 printfMatcher.appendReplacement( in parse()
129 } else if (printfMatcher.group("hex") != null) { in parse()
130 printfMatcher.appendReplacement( in parse()
133 } else if (printfMatcher.group("str") != null) { in parse()
134 printfMatcher.appendReplacement( in parse()
138 throw new RuntimeException("Unrecognized specifier: " + printfMatcher.group()); in parse()
141 printfMatcher.appendTail(regexBuilder); in parse()