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

/system/core/include/utils/
H A DTokenizer.h57 inline bool isEof() const { return mCurrent == getEnd(); } function in class:android::Tokenizer
62 inline bool isEol() const { return isEof() || *mCurrent == '\n'; }
84 inline char peekChar() const { return isEof() ? '\0' : *mCurrent; }
95 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); }
/system/core/libutils/include/utils/
H A DTokenizer.h57 inline bool isEof() const { return mCurrent == getEnd(); } function in class:android::Tokenizer
62 inline bool isEol() const { return isEof() || *mCurrent == '\n'; }
84 inline char peekChar() const { return isEof() ? '\0' : *mCurrent; }
95 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); }
/system/core/libutils/
H A DPropertyMap.cpp160 while (!mTokenizer->isEof()) {

Completed in 55 milliseconds