Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/unittests/Format/
H A DFormatTest.cpp10401 FormatStyle TypeMacros = getLLVMStyle(); in TEST_F() local
10402 TypeMacros.TypenameMacros = {"LIST"}; in TEST_F()
10403 verifyFormat("vector<LIST(uint64_t)> v;", TypeMacros); in TEST_F()
10404 verifyFormat("vector<LIST(uint64_t) *> v;", TypeMacros); in TEST_F()
10405 verifyFormat("vector<LIST(uint64_t) **> v;", TypeMacros); in TEST_F()
10406 verifyFormat("vector<LIST(uint64_t) *attr> v;", TypeMacros); in TEST_F()
10407 verifyFormat("vector<A(uint64_t) * attr> v;", TypeMacros); // multiplication in TEST_F()
10552 verifyIndependentOfContext("MACRO(LIST(uint64_t) *a);", TypeMacros); // type in TEST_F()