Searched refs:mPos (Results 1 – 1 of 1) sorted by relevance
992 int mPos; field in ApiFile.Tokenizer1010 while (mPos < mBuf.length && isSpace(mBuf[mPos])) { in eatWhitespace()1011 if (mBuf[mPos] == '\n') { in eatWhitespace()1014 mPos++; in eatWhitespace()1021 if (mPos + 1 < mBuf.length) { in eatComment()1022 if (mBuf[mPos] == '/' && mBuf[mPos + 1] == '/') { in eatComment()1023 mPos += 2; in eatComment()1024 while (mPos < mBuf.length && !isNewline(mBuf[mPos])) { in eatComment()1025 mPos++; in eatComment()1060 return mPos; in offset()[all …]