Searched refs:parseBuffer (Results 1 - 4 of 4) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSUnserialize.y217 static const char *parseBuffer;
220 #define currentChar() (parseBuffer[parseBufferIndex])
221 #define nextChar() (parseBuffer[++parseBufferIndex])
222 #define prevChar() (parseBuffer[parseBufferIndex - 1])
304 bcopy(&parseBuffer[start], tempString, length);
336 if (parseBuffer[from] == '\\') {
340 tempString[to] = parseBuffer[from];
628 parseBuffer = buffer;
H A DOSUnserializeXML.y89 const char *parseBuffer; // start of text to be parsed
278 #define currentChar() (state->parseBuffer[state->parseBufferIndex])
279 #define nextChar() (state->parseBuffer[++state->parseBufferIndex])
280 #define prevChar() (state->parseBuffer[state->parseBufferIndex - 1])
414 c = state->parseBuffer[start + i++];
419 c = state->parseBuffer[start + i++];
421 if (state->parseBuffer[start + i++] != 't') goto error;
422 if (state->parseBuffer[start + i++] != ';') goto error;
427 if (state->parseBuffer[start + i++] != 't') goto error;
428 if (state->parseBuffer[star
[all...]
H A DOSUnserialize.cpp1176 static const char *parseBuffer;
1179 #define currentChar() (parseBuffer[parseBufferIndex])
1180 #define nextChar() (parseBuffer[++parseBufferIndex])
1181 #define prevChar() (parseBuffer[parseBufferIndex - 1])
1263 bcopy(&parseBuffer[start], tempString, length);
1295 if (parseBuffer[from] == '\\') {
1299 tempString[to] = parseBuffer[from];
1587 parseBuffer = buffer;
1173 static const char *parseBuffer; variable
H A DOSUnserializeXML.cpp184 const char *parseBuffer; // start of text to be parsed member in struct:parser_state
1890 #define currentChar() (state->parseBuffer[state->parseBufferIndex])
1891 #define nextChar() (state->parseBuffer[++state->parseBufferIndex])
1892 #define prevChar() (state->parseBuffer[state->parseBufferIndex - 1])
2026 c = state->parseBuffer[start + i++];
2031 c = state->parseBuffer[start + i++];
2033 if (state->parseBuffer[start + i++] != 't') goto error;
2034 if (state->parseBuffer[start + i++] != ';') goto error;
2039 if (state->parseBuffer[start + i++] != 't') goto error;
2040 if (state->parseBuffer[star
[all...]

Completed in 45 milliseconds