Searched defs:nextChar (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/include/utils/
H A DTokenizer.h95 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); } function in class:android::Tokenizer
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java70 private int nextChar; field in class:AbstractMessageParser
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), bu
[all...]

Completed in 50 milliseconds