Home | History | Annotate | Download | only in Format

Lines Matching defs:Space

3665                "    : some_var_(var),            // 4 space indent\n"
5558 // FIXME: The space after 'i' is wrong, but hopefully, this is a rare case.
6266 "#include < path with space >\n"
6903 EXPECT_EQ("#error Leave all white!!!!! space* alone!\n",
6904 format("#error Leave all white!!!!! space* alone!\n"));
6906 "#warning Leave all white!!!!! space* alone!\n",
6907 format("#warning Leave all white!!!!! space* alone!\n"));
7229 // FIXME: In LLVM style, there should be a space in front of a '<' for ObjC
8904 FormatStyle Space = getLLVMStyle();
8905 Space.SpaceBeforeParens = FormatStyle::SBPO_Always;
8907 verifyFormat("int f ();", Space);
8912 Space);
8917 Space);
8921 Space);
8926 Space);
8927 verifyFormat("A::A () : a (1) {}", Space);
8928 verifyFormat("void f () __attribute__ ((asdf));", Space);
8933 Space);
8934 verifyFormat("#define A(x) x", Space);
8935 verifyFormat("#define A (x) x", Space);
8938 Space);
8939 verifyFormat("auto i = std::make_unique<int> (5);", Space);
8940 verifyFormat("size_t x = sizeof (x);", Space);
8941 verifyFormat("auto f (int x) -> decltype (x);", Space);
8942 verifyFormat("int f (T x) noexcept (x.create ());", Space);
8943 verifyFormat("alignas (128) char a[128];", Space);
8944 verifyFormat("size_t x = alignof (MyType);", Space);
8945 verifyFormat("static_assert (sizeof (char) == 1, \"Impossible!\");", Space);
8946 verifyFormat("int f () throw (Deprecated);", Space);
8947 verifyFormat("typedef void (*cb) (int);", Space);
8948 verifyFormat("T A::operator() ();", Space);
8949 verifyFormat("X A::operator++ (T);", Space);