Home | History | Annotate | Download | only in glcpp

Lines Matching defs:SPACE

37    infringing on user name space.  This should be done even for local
41 USER NAME SPACE" below. */
294 SPACE = 284,
368 # include <stddef.h> /* INFRINGES ON USER NAME SPACE */
380 # include <libintl.h> /* INFRINGES ON USER NAME SPACE */
443 # include <alloca.h> /* INFRINGES ON USER NAME SPACE */
447 # include <malloc.h> /* INFRINGES ON USER NAME SPACE */
452 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
481 # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
489 void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
495 void free (void *); /* INFRINGES ON USER NAME SPACE */
651 "PLACEHOLDER", "SPACE", "PLUS_PLUS", "MINUS_MINUS", "PASTE", "OR", "AND",
1028 # include <stdio.h> /* INFRINGES ON USER NAME SPACE */
1415 /* Avoid sprintf, as that infringes on the user's name space.
2554 (yyval.token) = _token_create_ival (parser, SPACE, SPACE);
3228 if (token->type != SPACE)
3285 while (n != NULL && n->token->type == SPACE)
3311 if (node_a == NULL && node_b->token->type == SPACE) {
3312 while (node_b && node_b->token->type == SPACE)
3316 if (node_b == NULL && node_a->token->type == SPACE) {
3317 while (node_a && node_a->token->type == SPACE)
3330 if (node_a->token->type == SPACE && node_b->token->type == SPACE) {
3331 while (node_a && node_a->token->type == SPACE)
3333 while (node_b && node_b->token->type == SPACE)
3380 case SPACE:
3661 * perhaps preceeding SPACE tokens). Upon successful return *last will
3691 while (node && node->token->type == SPACE)
3718 if (node->token->type == SPACE)
3749 return _token_list_create_with_one_ival(parser, SPACE, SPACE);
3763 * If "node" is followed, (ignoring any SPACE tokens), by an IDENTIFIER token
3790 while (node && node->token->type == SPACE)
3802 while (node && node->token->type == SPACE)
3815 while (node && node->token->type == SPACE)
3912 /* Look ahead for a PASTE token, skipping space. */
3914 while (next_non_space && next_non_space->token->type == SPACE)
3925 /* Now find the next non-space token after the PASTE. */
3927 while (next_non_space && next_non_space->token->type == SPACE)
3996 /* Replace a macro defined as empty with a SPACE token. */
4125 /* Replace a macro defined as empty with a SPACE token. */
4420 * purpose of converting a NEWLINE token into a SPACE
4439 ret = SPACE;
4440 } else if (ret != SPACE) {
4487 /* Copy list, eliminating any space tokens. */
4491 if (node->token->type == SPACE)