Home | History | Annotate | Download | only in util

Lines Matching refs:line

32      * corresponding to the text. The format is simple: Each line may
36 * is encountered, it and the rest of the line are ignored as a
57 String line;
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
65 int colonAt = line.indexOf(':');
69 int quoteAt = line.indexOf('\"');
74 String atStr = line.substring(0, colonAt).trim();
75 line = line.substring(colonAt + 1);
83 int lineLen = line.length();
88 char c = line.charAt(i);