Lines Matching refs:InvertedSpaceStyle
16042 FormatStyle InvertedSpaceStyle = getLLVMStyle(); in TEST_F() local
16043 InvertedSpaceStyle.SpaceBeforeCaseColon = true; in TEST_F()
16044 InvertedSpaceStyle.SpaceBeforeCtorInitializerColon = false; in TEST_F()
16045 InvertedSpaceStyle.SpaceBeforeInheritanceColon = false; in TEST_F()
16046 InvertedSpaceStyle.SpaceBeforeRangeBasedForLoopColon = false; in TEST_F()
16047 verifyFormat("class Foo: public Bar {};", InvertedSpaceStyle); in TEST_F()
16048 verifyFormat("Foo::Foo(): foo(1) {}", InvertedSpaceStyle); in TEST_F()
16049 verifyFormat("for (auto a: b) {\n}", InvertedSpaceStyle); in TEST_F()
16050 verifyFormat("int x = a ? b : c;", InvertedSpaceStyle); in TEST_F()
16055 InvertedSpaceStyle); in TEST_F()
16064 InvertedSpaceStyle); in TEST_F()
16076 InvertedSpaceStyle); in TEST_F()