Lines Matching refs:tokstart

1258   char *tokstart;
1266 tokstart = lexptr;
1269 if (DEPRECATED_STREQN (tokstart, tokentab3[i].operator, 3))
1278 if (DEPRECATED_STREQN (tokstart, tokentab2[i].operator, 2))
1286 switch (tokchr = *tokstart)
1314 namelen = skip_quoted (tokstart) - tokstart;
1317 lexptr = tokstart + namelen;
1321 tokstart++;
1366 char *p = tokstart;
1426 toktype = parse_number (tokstart, p - tokstart,
1430 char *err_copy = (char *) alloca (p - tokstart + 1);
1432 memcpy (err_copy, tokstart, p - tokstart);
1433 err_copy[p - tokstart] = 0;
1467 if (strncmp(tokstart, "@selector", 9) == 0)
1469 tokptr = strchr(tokstart, '(');
1495 if (tokstart[1] != '"')
1502 tokstart++;
1516 tokptr = ++tokstart;
1564 for (c = tokstart[namelen];
1571 while (tokstart[++i] && tokstart[i] != '>');
1572 if (tokstart[i] == '>')
1575 c = tokstart[++namelen];
1580 if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f')
1593 if (DEPRECATED_STREQN (tokstart, "unsigned", 8))
1596 && strncmp (tokstart, "template", 8) == 0)
1598 if (DEPRECATED_STREQN (tokstart, "volatile", 8))
1602 if (DEPRECATED_STREQN (tokstart, "struct", 6))
1604 if (DEPRECATED_STREQN (tokstart, "signed", 6))
1606 if (DEPRECATED_STREQN (tokstart, "sizeof", 6))
1608 if (DEPRECATED_STREQN (tokstart, "double", 6))
1613 && strncmp (tokstart, "class", 5) == 0)
1615 if (DEPRECATED_STREQN (tokstart, "union", 5))
1617 if (DEPRECATED_STREQN (tokstart, "short", 5))
1619 if (DEPRECATED_STREQN (tokstart, "const", 5))
1623 if (DEPRECATED_STREQN (tokstart, "enum", 4))
1625 if (DEPRECATED_STREQN (tokstart, "long", 4))
1629 if (DEPRECATED_STREQN (tokstart, "int", 3))
1636 yylval.sval.ptr = tokstart;
1639 if (*tokstart == '$')
1795 ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) ||
1796 (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
1799 hextype = parse_number (tokstart, namelen, 0, &newlval);