Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/unittests/Format/
H A DFormatTest.cpp2342 FormatStyle ShortBlocks = getLLVMStyle(); in TEST_F() local
2343 ShortBlocks.AllowShortBlocksOnASingleLine = FormatStyle::SBS_Always; in TEST_F()
2344 EXPECT_EQ(ShortBlocks.AllowShortLoopsOnASingleLine, false); in TEST_F()
2357 ShortBlocks); in TEST_F()
22234 FormatStyle ShortBlocks = getLLVMStyle(); in TEST_F() local
22235 ShortBlocks.AllowShortBlocksOnASingleLine = FormatStyle::SBS_Always; in TEST_F()
22236 verifyFormat("int (^Block)(int, int);", ShortBlocks); in TEST_F()
22237 verifyFormat("int (^Block1)(int, int) = ^(int i, int j)", ShortBlocks); in TEST_F()
22243 verifyFormat("foo(^{ bar(); });", ShortBlocks); in TEST_F()
22244 verifyFormat("foo(a, ^{ bar(); });", ShortBlocks); in TEST_F()
[all …]