| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/tests/ |
| H A D | 082-invalid-paste.c | 1 #define PASTE(x,y) x ## y macro 2 PASTE(<,>) 3 PASTE(0,abc) 4 PASTE(1,=) 5 PASTE(2,~) 6 PASTE(3,-4) 7 PASTE(4,+5.2)
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/tests/ |
| H A D | 082-invalid-paste.c | 1 #define PASTE(x,y) x ## y macro 2 PASTE(<,>) 3 PASTE(0,abc) 4 PASTE(1,=) 5 PASTE(2,~) 6 PASTE(3,-4) 7 PASTE(4,+5.2)
|
| /xsrc/external/mit/MesaLib/dist/src/amd/compiler/tests/ |
| H A D | framework.h | 61 #define PASTE(a, b) _PASTE(a, b) macro 63 #define _BEGIN_TEST(name, struct_name) static void struct_name(); static __attribute__((constructor)) void PASTE(add_test_, __COUNTER__)() {\ 68 #define BEGIN_TEST(name) _BEGIN_TEST(name, PASTE(Test_, __COUNTER__)) 69 #define BEGIN_TEST_TODO(name) _BEGIN_TEST(name, PASTE(Test_, __COUNTER__)) 70 #define BEGIN_TEST_FAIL(name) _BEGIN_TEST(name, PASTE(Test_, __COUNTER__))
|
| /xsrc/external/mit/MesaLib.old/src/compiler/glsl/glcpp/ |
| H A D | glcpp-parse.h | 80 PASTE = 287, enumerator in enum:yytokentype
|
| H A D | glcpp-parse.c | 297 PASTE = 287, enumerator in enum:yytokentype 651 "PLACEHOLDER", "SPACE", "PLUS_PLUS", "MINUS_MINUS", "PASTE", "OR", "AND", 2742 { (yyval.ival) = PASTE; } 3407 case PASTE: 3912 /* Look ahead for a PASTE token, skipping space. */ 3920 if (next_non_space->token->type != PASTE) { 3925 /* Now find the next non-space token after the PASTE. */
|
| H A D | glcpp-lex.c | 1830 RETURN_TOKEN (PASTE);
|
| /xsrc/external/mit/MesaLib/src/compiler/glsl/glcpp/ |
| H A D | glcpp-parse.h | 88 PASTE = 289, /* PASTE */ enumerator in enum:yytokentype
|
| H A D | glcpp-parse.c | 312 YYSYMBOL_PASTE = 34, /* PASTE */ 771 "MINUS_MINUS", "PATH", "INCLUDE", "PASTE", "OR", "AND", "'|'", "'^'", 3044 case 114: /* operator: PASTE */ 3046 { (yyval.ival) = PASTE; } 3714 case PASTE: 4220 /* Look ahead for a PASTE token, skipping space. */ 4228 if (next_non_space->token->type != PASTE) { 4233 /* Now find the next non-space token after the PASTE. */
|
| H A D | glcpp-lex.c | 1869 RETURN_TOKEN (PASTE);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/ |
| H A D | glcpp-lex.l | 537 RETURN_TOKEN (PASTE);
|
| H A D | glcpp-parse.y | 197 %token PASTE 865 | PASTE { $$ = PASTE; } 1290 case PASTE: 1796 /* Look ahead for a PASTE token, skipping space. */ 1804 if (next_non_space->token->type != PASTE) { 1809 /* Now find the next non-space token after the PASTE. */
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/ |
| H A D | glcpp-lex.l | 531 RETURN_TOKEN (PASTE);
|
| H A D | glcpp-parse.y | 178 %token PASTE 758 | PASTE { $$ = PASTE; } 1177 case PASTE: 1682 /* Look ahead for a PASTE token, skipping space. */ 1690 if (next_non_space->token->type != PASTE) { 1695 /* Now find the next non-space token after the PASTE. */
|