Home | History | Annotate | Download | only in proguard

Lines Matching defs:currentIndex

44     private int        currentIndex;
138 while (currentIndex < currentLineLength &&
139 Character.isWhitespace(currentLine.charAt(currentIndex)))
141 currentIndex++;
145 if (currentIndex < currentLineLength &&
146 isComment(currentLine.charAt(currentIndex)))
148 currentIndex = currentLineLength;
153 while (currentLine == null || currentIndex == currentLineLength)
164 currentIndex = 0;
165 while (currentIndex < currentLineLength &&
166 Character.isWhitespace(currentLine.charAt(currentIndex)))
168 currentIndex++;
172 if (currentIndex < currentLineLength &&
173 isComment(currentLine.charAt(currentIndex)))
176 String comment = currentLine.substring(currentIndex + 1);
182 currentIndex = currentLineLength;
187 int startIndex = currentIndex;
202 currentIndex++;
204 if (currentIndex == currentLineLength)
206 currentWord = currentLine.substring(startIndex-1, currentIndex);
210 while (currentLine.charAt(currentIndex) != startChar);
212 endIndex = currentIndex++;
220 while (currentIndex < currentLineLength)
222 char currentCharacter = currentLine.charAt(currentIndex);
226 Character.isWhitespace(currentLine.charAt(currentIndex-1)))) {
230 currentIndex++;
233 endIndex = currentIndex;
245 endIndex = ++currentIndex;
252 while (currentIndex < currentLineLength)
254 char currentCharacter = currentLine.charAt(currentIndex);
261 currentIndex++;
264 endIndex = currentIndex;