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

/macosx-10.5.8/xnu-1228.15.4/libkern/c++/
H A DOSUnserialize.y221 #define nextChar() (parseBuffer[++parseBufferIndex])
251 if (isSpace(c)) while ((c = nextChar()) != 0 && isSpace(c)) {};
254 if (c == '#') while ((c = nextChar()) != 0 && c != '\n') {};
259 (void)nextChar();
266 if (nextChar() == 't') {
267 if (nextChar() != 'r') return SYNTAX_ERROR;
268 if (nextChar() != 'u') return SYNTAX_ERROR;
269 if (nextChar() != 'e') return SYNTAX_ERROR;
273 if (nextChar() != 'a') return SYNTAX_ERROR;
274 if (nextChar() !
[all...]
H A DOSUnserializeXML.y279 #define nextChar() (state->parseBuffer[++state->parseBufferIndex])
303 c = nextChar(); // skip '<'
306 while ((c = nextChar()) != 0) {
309 (void)nextChar();
316 c = nextChar(); // skip '/'
324 c = nextChar();
334 while (isSpace(c)) c = nextChar();
340 c = nextChar();
344 while (isSpace(c)) c = nextChar();
347 c = nextChar();
[all...]
H A DOSUnserialize.cpp1180 #define nextChar() (parseBuffer[++parseBufferIndex])
1210 if (isSpace(c)) while ((c = nextChar()) != 0 && isSpace(c)) {};
1213 if (c == '#') while ((c = nextChar()) != 0 && c != '\n') {};
1218 (void)nextChar();
1225 if (nextChar() == 't') {
1226 if (nextChar() != 'r') return SYNTAX_ERROR;
1227 if (nextChar() != 'u') return SYNTAX_ERROR;
1228 if (nextChar() != 'e') return SYNTAX_ERROR;
1232 if (nextChar() != 'a') return SYNTAX_ERROR;
1233 if (nextChar() !
1177 #define nextChar macro
[all...]

Completed in 29 milliseconds