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

/darwin-on-arm/xnu/libkern/c++/
H A DOSUnserialize.y217 static int parseBufferIndex;
219 #define currentChar() (parseBuffer[parseBufferIndex])
220 #define nextChar() (parseBuffer[++parseBufferIndex])
221 #define prevChar() (parseBuffer[parseBufferIndex - 1])
244 if (parseBufferIndex == 0) lineNumber = 1;
290 start = parseBufferIndex;
295 length = parseBufferIndex - start;
315 start = parseBufferIndex + 1; // skip quote
322 length = parseBufferIndex - start;
333 for (int from=start; from < parseBufferIndex; fro
[all...]
H A DOSUnserializeXML.y90 int parseBufferIndex; // current index into text
272 #define currentChar() (state->parseBuffer[state->parseBufferIndex])
273 #define nextChar() (state->parseBuffer[++state->parseBufferIndex])
274 #define prevChar() (state->parseBuffer[state->parseBufferIndex - 1])
415 start = state->parseBufferIndex;
428 length = state->parseBufferIndex - start;
1099 state->parseBufferIndex = 0;
H A DOSUnserializeXML.cpp185 int parseBufferIndex; // current index into text member in struct:parser_state
1884 #define currentChar() (state->parseBuffer[state->parseBufferIndex])
1885 #define nextChar() (state->parseBuffer[++state->parseBufferIndex])
1886 #define prevChar() (state->parseBuffer[state->parseBufferIndex - 1])
2027 start = state->parseBufferIndex;
2040 length = state->parseBufferIndex - start;
2711 state->parseBufferIndex = 0;

Completed in 17 milliseconds