Searched refs:test_cpp_expr (Results 1 – 1 of 1) sorted by relevance
/bionic/libc/kernel/tools/ |
D | cpp.py | 833 def test_cpp_expr(expr, expected): function 867 test_cpp_expr("0", "(int 0)") 868 test_cpp_expr("1", "(int 1)") 869 test_cpp_expr("-5", "(int -5)") 870 test_cpp_expr("+1", "(int 1)") 871 test_cpp_expr("0U", "(int 0)") 872 test_cpp_expr("015", "(oct 015)") 873 test_cpp_expr("015l", "(oct 015)") 874 test_cpp_expr("0x3e", "(hex 0x3e)") 875 test_cpp_expr("(0)", "(int 0)") [all …]
|