Home | History | Annotate | Download | only in server

Lines Matching refs:current

211         int current = 0;
216 if (rawEvent.charAt(current) == '\"') {
218 current++;
220 while (current < length) {
223 wordEnd = current;
232 String word = rawEvent.substring(current, wordEnd);
233 current += word.length();
237 current++; // skip the trailing quote
247 int nextSpace = rawEvent.indexOf(' ', current);
248 int nextQuote = rawEvent.indexOf(" \"", current);
254 current = nextQuote + 2;
258 current = nextSpace + 1;
260 } // else we just start the next word after the current and read til the end
262 Slog.e(LOGTAG, "next loop - current=" + current +