Searched refs:testBuilder (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/clang/unittests/Tooling/ |
| H A D | SourceCodeBuildersTest.cpp | 190 static void testBuilder( in testBuilder() function 210 testBuilder(buildParens, "-4;", "(-4)"); in TEST() 214 testBuilder(buildParens, "4 + 4;", "(4 + 4)"); in TEST() 218 testBuilder(buildParens, "4;", "4"); in TEST() 230 testBuilder(buildAddressOf, "S x; x;", "&x"); in TEST() 280 testBuilder(buildDot, "S x; x;", "x."); in TEST() 284 testBuilder(buildDot, "S *x; *x;", "x->"); in TEST() 288 testBuilder(buildDot, "S *x; *(x);", "x->"); in TEST() 300 testBuilder(buildArrow, "S *x; x;", "x->"); in TEST() 304 testBuilder(buildArrow, "S x; &x;", "x."); in TEST() [all …]
|