Searched refs:tokstart (Results 1 - 14 of 14) sorted by relevance

/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dp-exp.y1097 /* make an uppercased copy of tokstart. */
1098 static char * uptok (tokstart, namelen)
1099 char *tokstart;
1106 if ((tokstart[i]>='a' && tokstart[i]<='z'))
1107 uptokstart[i] = tokstart[i]-('a'-'A');
1109 uptokstart[i] = tokstart[i];
1128 char *tokstart;
1141 tokstart = lexptr;
1146 if (strncasecmp (tokstart, tokentab
[all...]
H A Dobjc-exp.y1223 char *tokstart;
1231 tokstart = lexptr;
1234 if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
1243 if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
1251 switch (tokchr = *tokstart)
1279 namelen = skip_quoted (tokstart) - tokstart;
1282 lexptr = tokstart + namelen;
1286 tokstart++;
1331 char *p = tokstart;
[all...]
H A Djv-exp.y857 char *tokstart;
867 tokstart = lexptr;
870 if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
879 if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
886 switch (c = *tokstart)
914 namelen = skip_quoted (tokstart) - tokstart;
917 lexptr = tokstart + namelen;
921 tokstart++;
965 char *p = tokstart;
[all...]
H A Dcp-name-parser.y1515 if (strncmp (tokstart, string, sizeof (string) - 1) == 0) \
1517 lexptr = tokstart + sizeof (string) - 1; \
1545 const char *tokstart;
1549 tokstart = lexptr;
1551 switch (c = *tokstart)
1589 make_name (tokstart, lexptr - tokstart));
1594 if (strncmp (tokstart, "(anonymous namespace)", 21) == 0)
1627 if (strncmp (tokstart, "-in-", 4) == 0)
1654 const char *p = tokstart;
[all...]
H A Dp-exp.c2458 /* make an uppercased copy of tokstart. */
2459 static char * uptok (tokstart, namelen)
2460 char *tokstart;
2467 if ((tokstart[i]>='a' && tokstart[i]<='z'))
2468 uptokstart[i] = tokstart[i]-('a'-'A');
2470 uptokstart[i] = tokstart[i];
2489 char *tokstart;
2502 tokstart = lexptr;
2507 if (strncasecmp (tokstart, tokentab
2485 char *tokstart; local
[all...]
H A Djv-exp.c2251 char *tokstart;
2261 tokstart = lexptr;
2264 if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
2273 if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
2280 switch (c = *tokstart)
2308 namelen = skip_quoted (tokstart) - tokstart;
2311 lexptr = tokstart + namelen;
2315 tokstart++;
2359 char *p = tokstart;
2247 char *tokstart; local
[all...]
H A Dobjc-exp.c2894 char *tokstart;
2902 tokstart = lexptr;
2905 if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
2914 if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
2922 switch (tokchr = *tokstart)
2950 namelen = skip_quoted (tokstart) - tokstart;
2953 lexptr = tokstart + namelen;
2957 tokstart++;
3002 char *p = tokstart;
2890 char *tokstart; local
[all...]
H A Df-exp.y960 char *tokstart;
966 tokstart = lexptr;
975 if (strncmp (tokstart, boolean_values[i].name,
988 if (strncmp (tokstart, dot_ops[i].operator,
998 if (strncmp (tokstart, "**", 2) == 0)
1005 switch (c = *tokstart)
1059 char *p = tokstart;
1095 toktype = parse_number (tokstart, p - tokstart, got_dot|got_e|got_d,
1099 char *err_copy = (char *) alloca (p - tokstart
[all...]
H A Dm2-exp.y817 char *tokstart;
824 tokstart = lexptr;
829 if (strncmp (tokentab2[i].name, tokstart, 2) == 0)
835 switch (c = *tokstart)
897 for (namelen = 1; (c = tokstart[namelen]) != quote && c != '\0'; namelen++)
900 c = tokstart[++namelen];
903 c = tokstart[++namelen];
905 c = tokstart[++namelen];
910 yylval.sval.ptr = tokstart + 1;
916 yylval.ulval = tokstart[
[all...]
H A Dcp-name-parser.c3392 if (strncmp (tokstart, string, sizeof (string) - 1) == 0) \
3394 lexptr = tokstart + sizeof (string) - 1; \
3422 const char *tokstart;
3426 tokstart = lexptr;
3428 switch (c = *tokstart)
3466 make_name (tokstart, lexptr - tokstart));
3471 if (strncmp (tokstart, "(anonymous namespace)", 21) == 0)
3504 if (strncmp (tokstart, "-in-", 4) == 0)
3531 const char *p = tokstart;
3418 const char *tokstart; local
[all...]
H A Df-exp.c2399 char *tokstart;
2405 tokstart = lexptr;
2414 if (strncmp (tokstart, boolean_values[i].name,
2427 if (strncmp (tokstart, dot_ops[i].operator,
2437 if (strncmp (tokstart, "**", 2) == 0)
2444 switch (c = *tokstart)
2498 char *p = tokstart;
2534 toktype = parse_number (tokstart, p - tokstart, got_dot|got_e|got_d,
2538 char *err_copy = (char *) alloca (p - tokstart
2395 char *tokstart; local
[all...]
H A Dc-exp.y2053 char *tokstart;
2074 tokstart = lexptr;
2077 if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
2090 if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
2103 switch (c = *tokstart)
2178 char *p = tokstart;
2215 toktype = parse_number (tokstart, p - tokstart, got_dot|got_e, &yylval);
2218 char *err_copy = (char *) alloca (p - tokstart + 1);
2220 memcpy (err_copy, tokstart,
[all...]
H A Dm2-exp.c2357 char *tokstart;
2364 tokstart = lexptr;
2369 if (strncmp (tokentab2[i].name, tokstart, 2) == 0)
2375 switch (c = *tokstart)
2437 for (namelen = 1; (c = tokstart[namelen]) != quote && c != '\0'; namelen++)
2440 c = tokstart[++namelen];
2443 c = tokstart[++namelen];
2445 c = tokstart[++namelen];
2450 yylval.sval.ptr = tokstart + 1;
2456 yylval.ulval = tokstart[
2353 char *tokstart; local
[all...]
H A Dc-exp.c4051 char *tokstart;
4072 tokstart = lexptr;
4075 if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
4088 if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
4101 switch (c = *tokstart)
4176 char *p = tokstart;
4213 toktype = parse_number (tokstart, p - tokstart, got_dot|got_e, &yylval);
4216 char *err_copy = (char *) alloca (p - tokstart + 1);
4218 memcpy (err_copy, tokstart,
4047 char *tokstart; local
[all...]

Completed in 144 milliseconds