Searched refs:test_cpp_expr_source (Results 1 – 1 of 1) sorted by relevance
| /bionic/libc/kernel/tools/ |
| D | cpp.py | 1023 def test_cpp_expr_source(expr, expected): function 1084 test_cpp_expr_source("0", "0") 1085 test_cpp_expr_source("1", "1") 1086 test_cpp_expr_source("1 && 1", "1 && 1") 1087 test_cpp_expr_source("1 && 0", "1 && 0") 1088 test_cpp_expr_source("0 && 1", "0 && 1") 1089 test_cpp_expr_source("0 && 0", "0 && 0") 1090 test_cpp_expr_source("1 || 1", "1 || 1") 1091 test_cpp_expr_source("1 || 0", "1 || 0") 1092 test_cpp_expr_source("0 || 1", "0 || 1") [all …]
|