Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/unittests/Format/
H A DFormatTest.cpp10642 FormatStyle CustomAttrs = getLLVMStyle(); in TEST_F() local
10643 CustomAttrs.AttributeMacros.push_back("__unused"); in TEST_F()
10644 CustomAttrs.AttributeMacros.push_back("__attr1"); in TEST_F()
10645 CustomAttrs.AttributeMacros.push_back("__attr2"); in TEST_F()
10646 CustomAttrs.AttributeMacros.push_back("no_underscore_attr"); in TEST_F()
10656 verifyFormat("vector<SomeType *__attr1> v;", CustomAttrs); in TEST_F()
10657 verifyFormat("vector<SomeType *__attr2> v;", CustomAttrs); in TEST_F()
10659 verifyFormat("vector<SomeType __attr1 *> v;", CustomAttrs); in TEST_F()
10666 CustomAttrs.BreakBeforeBraces = FormatStyle::BS_Allman; in TEST_F()
10667 verifyFormat("SomeType s(InitValue);", CustomAttrs); in TEST_F()
[all …]