reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
386 while ((c = isl_stream_getc(s)) != -1) { 387 if (c == '#') { 390 c = '\n'; 393 } else if (!isspace(c) || (same_line && c == '\n')) 393 } else if (!isspace(c) || (same_line && c == '\n')) 400 if (c == -1 || (same_line && c == '\n')) 400 if (c == -1 || (same_line && c == '\n')) 404 if (c == '(' || 405 c == ')' || 406 c == '+' || 407 c == '*' || 408 c == '%' || 409 c == '?' || 410 c == '^' || 411 c == '@' || 412 c == '$' || 413 c == ',' || 414 c == '.' || 415 c == ';' || 416 c == '[' || 417 c == ']' || 418 c == '{' || 419 c == '}') { 423 tok->type = (enum isl_token_type)c; 426 if (c == '-') { 446 if (c == '-' || isdigit(c)) { 446 if (c == '-' || isdigit(c)) { 447 int minus = c == '-'; 453 if (isl_stream_push_char(s, c)) 455 while ((c = isl_stream_getc(s)) != -1 && isdigit(c)) 455 while ((c = isl_stream_getc(s)) != -1 && isdigit(c)) 456 if (isl_stream_push_char(s, c)) 458 if (c != -1) 459 isl_stream_ungetc(s, c); 473 if (isalpha(c) || c == '_') { 473 if (isalpha(c) || c == '_') { 477 isl_stream_push_char(s, c); 478 while ((c = isl_stream_getc(s)) != -1 && 479 (isalnum(c) || c == '_')) 479 (isalnum(c) || c == '_')) 480 isl_stream_push_char(s, c); 481 if (c != -1) 482 isl_stream_ungetc(s, c); 483 while ((c = isl_stream_getc(s)) != -1 && c == '\'') 483 while ((c = isl_stream_getc(s)) != -1 && c == '\'') 484 isl_stream_push_char(s, c); 485 if (c != -1) 486 isl_stream_ungetc(s, c); 496 if (c == '"') { 502 while ((c = isl_stream_getc(s)) != -1 && c != '"' && c != '\n') 502 while ((c = isl_stream_getc(s)) != -1 && c != '"' && c != '\n') 502 while ((c = isl_stream_getc(s)) != -1 && c != '"' && c != '\n') 503 isl_stream_push_char(s, c); 504 if (c != '"') { 512 if (c == '=') { 527 if (c == ':') { 542 if (c == '>') { 567 if (c == '<') { 592 if (c == '&') { 597 if ((c = isl_stream_getc(s)) != '&' && c != -1) { 597 if ((c = isl_stream_getc(s)) != '&' && c != -1) { 599 isl_stream_ungetc(s, c); 604 if (c == '|') { 609 if ((c = isl_stream_getc(s)) != '|' && c != -1) { 609 if ((c = isl_stream_getc(s)) != '|' && c != -1) { 611 isl_stream_ungetc(s, c); 616 if (c == '/') { 620 if ((c = isl_stream_getc(s)) != '\\' && c != -1) { 620 if ((c = isl_stream_getc(s)) != '\\' && c != -1) { 622 isl_stream_ungetc(s, c); 629 if (c == '\\') { 633 if ((c = isl_stream_getc(s)) != '/' && c != -1) { 633 if ((c = isl_stream_getc(s)) != '/' && c != -1) { 635 isl_stream_ungetc(s, c); 642 if (c == '!') { 646 if ((c = isl_stream_getc(s)) == '=') { 654 if (c != -1) 655 isl_stream_ungetc(s, c);