Searched refs:test_cpp_expr (Results 1 – 1 of 1) sorted by relevance
/bionic/libc/kernel/tools/ |
D | cpp.py | 1006 def test_cpp_expr(expr, expected): function 1032 test_cpp_expr("0", "(int 0)") 1033 test_cpp_expr("1", "(int 1)") 1034 test_cpp_expr("(0)", "(int 0)") 1035 test_cpp_expr("1 && 1", "(&& (int 1) (int 1))") 1036 test_cpp_expr("1 && 0", "(&& (int 1) (int 0))") 1037 test_cpp_expr("EXAMPLE", "(ident EXAMPLE)") 1038 test_cpp_expr("EXAMPLE - 3", "(- (ident EXAMPLE) (int 3))") 1039 test_cpp_expr("defined(EXAMPLE)", "(defined EXAMPLE)") 1040 test_cpp_expr("defined ( EXAMPLE ) ", "(defined EXAMPLE)") [all …]
|