Lines Matching defs:input

16     const char* input = "#define 2 foo\n"
26 preprocess(input, expected);
31 const char* input = "#define __LINE__ 10\n"
65 preprocess(input, expected);
70 const char* input = "#define __foo bar\n"
80 preprocess(input, expected);
85 const char* input = "#define foo__bar baz\n"
95 preprocess(input, expected);
100 const char* input = "#define GL_foo bar\n"
110 preprocess(input, expected);
115 const char* input = "#define foo (1-1)\n"
125 preprocess(input, expected);
130 const char* input = "#define foo (0)\n"
142 preprocess(input, expected);
147 const char* input = "#define foo(a) ( a )\n"
157 preprocess(input, expected);
162 const char* input = "#define foo(b) ( a )\n"
174 preprocess(input, expected);
179 const char* input = "#define foo 1\n"
184 preprocess(input, expected);
189 const char* input = "#define foo\n"
194 preprocess(input, expected);
199 const char* input = "#define foo 1\n"
206 preprocess(input, expected);
211 const char* input = "#define bar foo\n"
218 preprocess(input, expected);
223 const char* input = "#define foo bar\n"
236 preprocess(input, expected);
241 const char* input = "#define foo 1\n"
248 preprocess(input, expected);
253 const char* input = "#define bar a foo\n"
260 preprocess(input, expected);
265 const char* input = "#define foo a bar\n"
278 preprocess(input, expected);
283 const char* input = "#define foo foo\n"
290 preprocess(input, expected);
295 const char* input = "#define foo ()1\n"
304 preprocess(input, expected);
309 const char* input = "#define foo()\n"
314 preprocess(input, expected);
319 const char* input = "#define foo() bar\n"
324 preprocess(input, expected);
329 const char* input = "#define foo(x) 1\n"
334 preprocess(input, expected);
339 const char* input = "#define foo(x,y) 1\n"
344 preprocess(input, expected);
349 const char* input = "#define foo(x) ((x)+1)\n"
354 preprocess(input, expected);
359 const char* input = "#define foo(x,y) ((x)*(y))\n"
364 preprocess(input, expected);
369 const char* input = "#define zero() pass\n"
382 preprocess(input, expected);
387 const char* input = "#define x 0\n"
394 preprocess(input, expected);
399 const char* input = "#define foo(x) (x)\n"
404 preprocess(input, expected);
409 const char* input = "#define foo(x,y) x,two fish,red fish,y\n"
414 preprocess(input, expected);
419 const char* input = "#define bar(x) (1+(x))\n"
426 preprocess(input, expected);
431 const char* input = "#define foo(x) (x)\n"
436 preprocess(input, expected);
441 const char* input = "#define foo(bar) bar\n"
446 preprocess(input, expected);
451 const char* input = "#define foo(a) (a)\n"
462 preprocess(input, expected);
467 const char* input = "#define foo() pass\n"
474 preprocess(input, expected);
479 const char* input = "#define pass() fail\n"
486 preprocess(input, expected);
491 const char* input = "#define foo(fail) fail\n"
498 preprocess(input, expected);
503 const char* input = "#define baz(fail) fail\n"
512 preprocess(input, expected);
517 const char* input = "#define fail() pass\n"
524 preprocess(input, expected);
529 const char* input = "#define bar with,embedded,commas\n"
538 preprocess(input, expected);
543 const char* input = "#define foo(x) pass\n"
554 preprocess(input, expected);
559 const char* input = "#define A(a,b) B(a,b)\n"
566 preprocess(input, expected);
571 const char* input = "#define baz(fail) fail\n"
580 preprocess(input, expected);
585 const char* input = "#define foo(a) foo(2*(a))\n"
590 preprocess(input, expected);
595 const char* input = "#define foo(a) foo(2*(a))\n"
600 preprocess(input, expected);
605 const char* input = "#define foo(bar) bar\n"
610 preprocess(input, expected);
615 const char* input = "#define foo(bar) bar\n"
620 preprocess(input, expected);
625 const char* input = "#define expand(x) expand(x once)\n"
632 preprocess(input, expected);
637 const char* input = "#define foo(x) pass\n"
642 preprocess(input, expected);
647 const char* input = "#define foo(a) (a)\n"
654 preprocess(input, expected);
659 const char* input = "#define bar(a) a*2\n"
666 preprocess(input, expected);
671 const char* input = "#define double(x) x x\n"
676 preprocess(input, expected);
681 const char* input = "#define foo(x) (2*(x))\n"
691 preprocess(input, expected);
696 const char* input = "#define foo(x,y) ((x)+(y))\n"
718 preprocess(input, expected);
723 const char* input = "#define foo 1\n"
732 preprocess(input, expected);
737 const char* input = "#undef __LINE__\n"
771 preprocess(input, expected);
776 const char* input = "#define foo 1\n"
789 preprocess(input, expected);
794 const char* input =
831 preprocess(input, expected);
836 const char* input = "GL_ES\n";
839 preprocess(input, expected);
844 const char* input = "__VERSION__\n";
847 preprocess(input, expected);