Home
last modified time | relevance | path

Searched refs:testExpr (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/DebugInfo/DWARF/
H A DDWARFExpressionCopyBytesTest.cpp93 void testExpr(ArrayRef<uint8_t> ExprData);
189 void DWARFExpressionCopyBytesTest::testExpr(ArrayRef<uint8_t> ExprData) { in testExpr() function in DWARFExpressionCopyBytesTest
208 testExpr({DW_OP_regx, 0x80, 0x02}); in TEST_F()
212 testExpr({DW_OP_breg0, 0x04}); in TEST_F()
216 testExpr({DW_OP_breg0, 0x80, 0x02}); in TEST_F()
220 testExpr({DW_OP_breg13, 0x10}); in TEST_F()
224 testExpr({DW_OP_breg13, 0x00}); in TEST_F()
228 testExpr({DW_OP_breg0, 0x70}); in TEST_F()
232 testExpr({DW_OP_bregx, 0x0d, 0x28}); in TEST_F()
236 testExpr({DW_OP_breg13, 0x04, DW_OP_stack_value}); in TEST_F()
[all …]
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DStencilTest.cpp261 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
267 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
272 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
286 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
296 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
301 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
306 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
311 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
335 testExpr(Id, Snippet, maybeDeref(Id), "*x"); in TEST_F()
355 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/llvm-project-15.0.7/clang/test/AST/
H A Dast-dump-decl.cpp699 template<int, int = 0> class testExpr;
700 template<int I> class testExpr<I> { }; class