Home | History | Annotate | Download | only in util

Lines Matching refs:nextChar

70   private int nextChar;
102 this.nextChar = 0;
146 while (nextChar < text.length()) {
147 if (!isWordBreak(nextChar)) {
148 if (!wasSmiley || !isSmileyBreak(nextChar)) {
259 nextChar = text.length();
268 int start = nextChar;
270 char ch = text.charAt(nextChar++);
280 } while (!isWordBreak(nextChar));
282 addToken(new Html(text.substring(start, nextChar), buf.toString()));
293 TrieNode match = longestMatch(getResources().getSmileys(), this, nextChar,
298 int previousCharClass = getCharClass(nextChar - 1);
299 int nextCharClass = getCharClass(nextChar + match.getText().length());
305 nextChar += match.getText().length();
316 TrieNode match = longestMatch(getResources().getAcronyms(), this, nextChar);
321 nextChar += match.getText().length();
346 if (!parseUrls || !isURLBreak(nextChar)) {
350 int start = nextChar;
365 String scheme = text.substring(nextChar, index);
382 String domain = text.substring(nextChar, index);
456 nextChar = index;
488 int endChar = nextChar;
493 if ((endChar == nextChar) || !isWordBreak(endChar)) {
503 for (int index = nextChar; index < endChar; ++index) {
536 nextChar = endChar;