Home | History | Annotate | Download | only in apicheck

Lines Matching refs:mPos

542     int mPos;
559 while (mPos < mBuf.length && isspace(mBuf[mPos])) {
560 if (mBuf[mPos] == '\n') {
563 mPos++;
570 if (mPos+1 < mBuf.length) {
571 if (mBuf[mPos] == '/' && mBuf[mPos+1] == '/') {
572 mPos += 2;
573 while (mPos < mBuf.length && !isnewline(mBuf[mPos])) {
574 mPos++;
606 if (mPos >= mBuf.length) {
610 final char c = mBuf[mPos];
611 final int start = mPos;
612 mPos++;
618 if (mPos >= mBuf.length) {
621 final char k = mBuf[mPos];
625 mPos++;
631 mPos++;
634 return new String(mBuf, start, mPos-start);
646 while (mPos < mBuf.length && !isspace(mBuf[mPos]) && !issep(mBuf[mPos], parenIsSep)) {
647 mPos++;
649 if (mPos < mBuf.length) {
650 if (mBuf[mPos] == '<') {
652 mPos++;
653 } else if (mBuf[mPos] == '>') {
655 mPos++;
657 mPos++;
660 } while (mPos < mBuf.length
661 && ((!isspace(mBuf[mPos]) && !issep(mBuf[mPos], parenIsSep)) || genericDepth != 0));
662 if (mPos >= mBuf.length) {
665 return new String(mBuf, start, mPos-start);