Lines Matching defs:str

16     const char* str = "pass_1\n"
27 preprocess(str, expected);
32 const char* str = "pass_1\n"
43 preprocess(str, expected);
48 const char* str = "pass_1\n"
63 preprocess(str, expected);
68 const char* str = "pass_1\n"
83 preprocess(str, expected);
88 const char* str = "pass_1\n"
115 preprocess(str, expected);
120 const char* str = "pass_1\n"
143 preprocess(str, expected);
148 const char* str = "pass_1\n"
171 preprocess(str, expected);
176 const char* str = "pass_1\n"
201 preprocess(str, expected);
206 const char* str = "pass_1\n"
231 preprocess(str, expected);
236 const char* str = "#if 1 + 2 * 3 + - (26 % 17 - + 4 / 2)\n"
247 preprocess(str, expected);
252 const char* str = "#if defined foo\n"
287 preprocess(str, expected);
292 const char* str = "#if 4 - 1 == 2 + 1\n"
303 preprocess(str, expected);
308 const char* str = "#if 1 != 2\n"
319 preprocess(str, expected);
324 const char* str = "#if 1 < 2\n"
335 preprocess(str, expected);
340 const char* str = "#if 2 > 1\n"
351 preprocess(str, expected);
356 const char* str = "#if 1 <= 2\n"
377 preprocess(str, expected);
382 const char* str = "#if 2 >= 1\n"
403 preprocess(str, expected);
408 const char* str = "#if (0xaaaaaaaa | 0x55555555) == 0xffffffff\n"
419 preprocess(str, expected);
424 const char* str = "#if (0xaaaaaaa & 0x5555555) == 0\n"
435 preprocess(str, expected);
440 const char* str = "#if (0xaaaaaaa ^ 0x5555555) == 0xfffffff\n"
451 preprocess(str, expected);
456 const char* str = "#if (~ 0xdeadbeef) == -3735928560\n"
467 preprocess(str, expected);
472 const char* str = "#if (1 << 12) == 4096\n"
483 preprocess(str, expected);
488 const char* str = "#if (31762 >> 8) == 124\n"
499 preprocess(str, expected);
504 const char* str = "#define one 1\n"
521 preprocess(str, expected);
526 const char* str = "#if 0\n"
545 preprocess(str, expected);
550 const char* str = "#define foo\n"
575 preprocess(str, expected);
580 const char* str = "#define foo\n"
605 preprocess(str, expected);
610 const char* str = "#if\n"
612 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
625 const char* str = "#if 1 / (3 - (1 + 2))\n"
627 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
639 const char* str = "#if 1 % (3 - (1 + 2))\n"
641 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
653 const char* str = "#if 4294967296\n"
655 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
667 const char* str = "#if 077777777777\n"
669 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
681 const char* str = "#if 0xfffffffff\n"
683 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
695 const char* str = "#if UNDEFINED\n"
697 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
714 const char* str = "#if 1\n"
729 preprocess(str, expected);
734 const char* str = "#else\n";
735 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
748 const char* str = "#elif 1\n";
749 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
762 const char* str = "#endif\n";
763 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
776 const char* str = "#if 1\n"
780 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
793 const char* str = "#if 1\n"
797 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
810 const char* str = "#if 1\n";
811 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));
824 const char* str = "#ifdef foo\n";
825 ASSERT_TRUE(mPreprocessor.init(1, &str, 0));