Home | History | Annotate | Download | only in 087-ssa-local-vars

Lines Matching refs:current

48      * phi's. The key component here is the assignment of previous = current.
57 StringBuilder current = null;
60 if (current == null) {
61 current = new StringBuilder(64);
63 current.length();
66 if (l == -1 || current.length() < 1) {
70 if ((current.charAt(0) == ' ' || current.charAt(0) == '\t') && previous != null) {
72 while (i < current.length()) {
73 char ch = current.charAt(i);
80 && previous.length() + 1 + current.length() - i > maxLineLen) {
84 previous.append(current, i, current.length() - i);
86 previous = current;
87 current = null;