Lines Matching refs:SomeSpace

15253   FormatStyle SomeSpace = getLLVMStyle();  in TEST_F()  local
15254 SomeSpace.SpaceBeforeParens = FormatStyle::SBPO_NonEmptyParentheses; in TEST_F()
15256 verifyFormat("[]() -> float {}", SomeSpace); in TEST_F()
15257 verifyFormat("[] (auto foo) {}", SomeSpace); in TEST_F()
15258 verifyFormat("[foo]() -> int {}", SomeSpace); in TEST_F()
15259 verifyFormat("int f();", SomeSpace); in TEST_F()
15264 SomeSpace); in TEST_F()
15269 SomeSpace); in TEST_F()
15273 SomeSpace); in TEST_F()
15278 SomeSpace); in TEST_F()
15279 verifyFormat("A::A() : a (1) {}", SomeSpace); in TEST_F()
15280 verifyFormat("void f() __attribute__ ((asdf));", SomeSpace); in TEST_F()
15285 SomeSpace); in TEST_F()
15286 verifyFormat("#define A(x) x", SomeSpace); in TEST_F()
15287 verifyFormat("#define A (x) x", SomeSpace); in TEST_F()
15290 SomeSpace); in TEST_F()
15291 verifyFormat("auto i = std::make_unique<int> (5);", SomeSpace); in TEST_F()
15292 verifyFormat("size_t x = sizeof (x);", SomeSpace); in TEST_F()
15293 verifyFormat("auto f (int x) -> decltype (x);", SomeSpace); in TEST_F()
15294 verifyFormat("auto f (int x) -> typeof (x);", SomeSpace); in TEST_F()
15295 verifyFormat("auto f (int x) -> _Atomic (x);", SomeSpace); in TEST_F()
15296 verifyFormat("auto f (int x) -> __underlying_type (x);", SomeSpace); in TEST_F()
15297 verifyFormat("int f (T x) noexcept (x.create());", SomeSpace); in TEST_F()
15298 verifyFormat("alignas (128) char a[128];", SomeSpace); in TEST_F()
15299 verifyFormat("size_t x = alignof (MyType);", SomeSpace); in TEST_F()
15301 SomeSpace); in TEST_F()
15302 verifyFormat("int f() throw (Deprecated);", SomeSpace); in TEST_F()
15303 verifyFormat("typedef void (*cb) (int);", SomeSpace); in TEST_F()
15304 verifyFormat("T A::operator()();", SomeSpace); in TEST_F()
15307 verifyFormat("int x = int (y);", SomeSpace); in TEST_F()
15308 verifyFormat("auto lambda = []() { return 0; };", SomeSpace); in TEST_F()