Home | History | Annotate | Download | only in monkey

Lines Matching refs:Lines

23 import com.android.bugreport.util.Lines;
48 public void parse(Bugreport bugreport, Lines<? extends Line> in) throws IOException {
49 // Get the lines
50 final Lines<Line> lines = extractAnrLines(in);
51 if (!lines.hasNext()) {
55 final Line line = lines.next();
62 final ArrayList<Anr> anrs = anrParser.parse(lines, true);
71 * Pull out the ANR lines from a monkey log.
73 private static Lines<Line> extractAnrLines(Lines<? extends Line> lines) throws IOException {
85 while (state != STATE_DONE && lines.hasNext()) {
86 final Line line = lines.next();
109 return new Lines<Line>(list);