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

/frameworks/base/include/utils/
H A DTokenizer.h47 inline bool isEof() const { return mCurrent == getEnd(); } function in class:android::Tokenizer
52 inline bool isEol() const { return isEof() || *mCurrent == '\n'; }
74 inline char peekChar() const { return isEof() ? '\0' : *mCurrent; }
85 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); }

Completed in 98 milliseconds