Lines Matching refs:fCurrentChar

171 		fString = fCurrentChar = string;
178 fCurrentChar = fString + position;
211 while (*fCurrentChar != 0 && isspace(*fCurrentChar))
212 fCurrentChar++;
214 if (*fCurrentChar == 0) {
235 if (isdigit(*fCurrentChar)) {
237 const char* begin = fCurrentChar++;
239 if (*fCurrentChar == 'x') {
241 fCurrentChar++;
242 while (*fCurrentChar != 0
243 && (isdigit(*fCurrentChar)
244 || strchr("abcdefABCDEF", *fCurrentChar))) {
245 fCurrentChar++;
248 if (fCurrentChar - begin == 2)
253 while (*fCurrentChar != 0 && isdigit(*fCurrentChar))
254 fCurrentChar++;
257 int32 length = fCurrentChar - begin;
262 } else if (isalpha(*fCurrentChar) || *fCurrentChar == '_'
263 || *fCurrentChar == '$' || *fCurrentChar == '@') {
265 const char* begin = fCurrentChar;
266 fCurrentChar++;
267 while (*fCurrentChar != 0
268 && (isalpha(*fCurrentChar) || *fCurrentChar == '_'
269 || isdigit(*fCurrentChar))) {
270 fCurrentChar++;
273 int32 length = fCurrentChar - begin;
278 const char* begin = fCurrentChar;
279 char c = *fCurrentChar;
280 fCurrentChar++;
285 fCurrentChar--;
291 if (*fCurrentChar == '=') {
292 fCurrentChar++;
304 int32 length = fCurrentChar - begin;
312 fCurrentChar--;
319 fCurrentChar--;
331 switch (*fCurrentChar) {
338 fCurrentToken.SetTo(fCurrentChar, 1, _CurrentPos(),
339 *fCurrentChar);
340 fCurrentChar++;
352 const char* begin = fCurrentChar++;
355 while (*fCurrentChar != '\0' && *fCurrentChar != '"') {
356 char c = *fCurrentChar;
357 fCurrentChar++;
361 c = *fCurrentChar;
362 fCurrentChar++;
376 if (*fCurrentChar == '\0') {
381 fCurrentChar++;
393 const char* begin = fCurrentChar;
395 while (*fCurrentChar != 0 && !_IsUnquotedDelimitingChar(*fCurrentChar))
396 fCurrentChar++;
398 int32 length = fCurrentChar - begin;
439 return fCurrentChar - fString;
444 const char* fCurrentChar;