Lines Matching refs:SomeSpace2
15434 FormatStyle SomeSpace2 = getLLVMStyle(); in TEST_F() local
15435 SomeSpace2.SpaceBeforeParens = FormatStyle::SBPO_Custom; in TEST_F()
15436 SomeSpace2.SpaceBeforeParensOptions.BeforeNonEmptyParentheses = true; in TEST_F()
15437 verifyFormat("[]() -> float {}", SomeSpace2); in TEST_F()
15438 verifyFormat("[] (auto foo) {}", SomeSpace2); in TEST_F()
15439 verifyFormat("[foo]() -> int {}", SomeSpace2); in TEST_F()
15440 verifyFormat("int f();", SomeSpace2); in TEST_F()
15445 SomeSpace2); in TEST_F()
15450 SomeSpace2); in TEST_F()
15454 SomeSpace2); in TEST_F()
15459 SomeSpace2); in TEST_F()
15460 verifyFormat("A::A() : a (1) {}", SomeSpace2); in TEST_F()
15461 verifyFormat("void f() __attribute__ ((asdf));", SomeSpace2); in TEST_F()
15466 SomeSpace2); in TEST_F()
15467 verifyFormat("#define A(x) x", SomeSpace2); in TEST_F()
15468 verifyFormat("#define A (x) x", SomeSpace2); in TEST_F()
15471 SomeSpace2); in TEST_F()
15472 verifyFormat("auto i = std::make_unique<int> (5);", SomeSpace2); in TEST_F()
15473 verifyFormat("size_t x = sizeof (x);", SomeSpace2); in TEST_F()
15474 verifyFormat("auto f (int x) -> decltype (x);", SomeSpace2); in TEST_F()
15475 verifyFormat("auto f (int x) -> typeof (x);", SomeSpace2); in TEST_F()
15476 verifyFormat("auto f (int x) -> _Atomic (x);", SomeSpace2); in TEST_F()
15477 verifyFormat("auto f (int x) -> __underlying_type (x);", SomeSpace2); in TEST_F()
15478 verifyFormat("int f (T x) noexcept (x.create());", SomeSpace2); in TEST_F()
15479 verifyFormat("alignas (128) char a[128];", SomeSpace2); in TEST_F()
15480 verifyFormat("size_t x = alignof (MyType);", SomeSpace2); in TEST_F()
15482 SomeSpace2); in TEST_F()
15483 verifyFormat("int f() throw (Deprecated);", SomeSpace2); in TEST_F()
15484 verifyFormat("typedef void (*cb) (int);", SomeSpace2); in TEST_F()
15485 verifyFormat("T A::operator()();", SomeSpace2); in TEST_F()
15487 verifyFormat("int x = int (y);", SomeSpace2); in TEST_F()
15488 verifyFormat("auto lambda = []() { return 0; };", SomeSpace2); in TEST_F()