Lines Matching refs:parseBufferIndex
1853 static int parseBufferIndex; variable
1855 #define currentChar() (parseBuffer[parseBufferIndex])
1856 #define nextChar() (parseBuffer[++parseBufferIndex])
1857 #define prevChar() (parseBuffer[parseBufferIndex - 1])
1880 if (parseBufferIndex == 0) { in yylex()
1954 start = parseBufferIndex; in yylex()
1959 length = parseBufferIndex - start; in yylex()
1979 start = parseBufferIndex + 1; // skip quote in yylex()
1992 length = parseBufferIndex - start; in yylex()
2003 for (int from = start; from < parseBufferIndex; from++) { in yylex()
2310 parseBufferIndex = 0; in OSUnserialize()