Home | History | Annotate | Download | only in Format

Lines Matching defs:Space

3621                "    : some_var_(var),            // 4 space indent\n"
5402 // FIXME: The space after 'i' is wrong, but hopefully, this is a rare case.
6080 "#include < path with space >\n"
6708 EXPECT_EQ("#error Leave all white!!!!! space* alone!\n",
6709 format("#error Leave all white!!!!! space* alone!\n"));
6711 "#warning Leave all white!!!!! space* alone!\n",
6712 format("#warning Leave all white!!!!! space* alone!\n"));
7027 // FIXME: In LLVM style, there should be a space in front of a '<' for ObjC
8470 FormatStyle Space = getLLVMStyle();
8471 Space.SpaceBeforeParens = FormatStyle::SBPO_Always;
8473 verifyFormat("int f ();", Space);
8478 Space);
8483 Space);
8487 Space);
8492 Space);
8493 verifyFormat("A::A () : a (1) {}", Space);
8494 verifyFormat("void f () __attribute__ ((asdf));", Space);
8499 Space);
8500 verifyFormat("#define A(x) x", Space);
8501 verifyFormat("#define A (x) x", Space);
8504 Space);
8505 verifyFormat("auto i = std::make_unique<int> (5);", Space);
8506 verifyFormat("size_t x = sizeof (x);", Space);
8507 verifyFormat("auto f (int x) -> decltype (x);", Space);
8508 verifyFormat("int f (T x) noexcept (x.create ());", Space);
8509 verifyFormat("alignas (128) char a[128];", Space);
8510 verifyFormat("size_t x = alignof (MyType);", Space);
8511 verifyFormat("static_assert (sizeof (char) == 1, \"Impossible!\");", Space);
8512 verifyFormat("int f () throw (Deprecated);", Space);
8513 verifyFormat("typedef void (*cb) (int);", Space);
8514 verifyFormat("T A::operator() ();", Space);
8515 verifyFormat("X A::operator++ (T);", Space);