Lines Matching refs:parseBufferIndex
1870 static int parseBufferIndex; variable
1872 #define currentChar() (parseBuffer[parseBufferIndex])
1873 #define nextChar() (parseBuffer[++parseBufferIndex])
1874 #define prevChar() (parseBuffer[parseBufferIndex - 1])
1897 if (parseBufferIndex == 0) { in yylex()
1971 start = parseBufferIndex; in yylex()
1976 length = parseBufferIndex - start; in yylex()
1996 start = parseBufferIndex + 1; // skip quote in yylex()
2009 length = parseBufferIndex - start; in yylex()
2020 for (int from = start; from < parseBufferIndex; from++) { in yylex()
2327 parseBufferIndex = 0; in OSUnserialize()