Lines Matching defs:AlignLeft

2357   FormatStyle AlignLeft = getLLVMStyle();
2358 AlignLeft.PointerAlignment = FormatStyle::PAS_Left;
2359 verifyFormat("for (A* a = start; a < end; ++a, ++value) {\n}", AlignLeft);
6643 FormatStyle AlignLeft = getLLVMStyle();
6644 AlignLeft.AlignEscapedNewlines = FormatStyle::ENAS_Left;
6648 AlignLeft);
6660 AlignLeft);
6666 verifyFormat(Code, AlignLeft);
11635 FormatStyle AlignLeft = getLLVMStyle();
11636 AlignLeft.PointerAlignment = FormatStyle::PAS_Left;
11637 verifyFormat("void A::b() && {}", AlignLeft);
11638 verifyFormat("void A::b() && noexcept {}", AlignLeft);
11639 verifyFormat("Deleted& operator=(const Deleted&) & = default;", AlignLeft);
11641 AlignLeft);
11643 AlignLeft);
11644 verifyFormat("Deleted& operator=(const Deleted&) &;", AlignLeft);
11645 verifyFormat("SomeType MemberFunction(const Deleted&) &;", AlignLeft);
11646 verifyFormat("auto Function(T t) & -> void {}", AlignLeft);
11647 verifyFormat("auto Function(T... t) & -> void {}", AlignLeft);
11648 verifyFormat("auto Function(T) & -> void {}", AlignLeft);
11649 verifyFormat("auto Function(T) & -> void;", AlignLeft);
11650 verifyFormat("void Fn(T const&) const&;", AlignLeft);
11651 verifyFormat("void Fn(T const volatile&&) const volatile&&;", AlignLeft);
11653 AlignLeft);
11654 verifyFormat("template <typename T> void operator=(T) &;", AlignLeft);
11655 verifyFormat("template <typename T> void operator=(T) const&;", AlignLeft);
11657 AlignLeft);
11659 AlignLeft);
11660 verifyFormat("template <typename T> void operator=(T) &&;", AlignLeft);
11662 AlignLeft);
11663 verifyFormat("template <typename T> void operator=(T) & {}", AlignLeft);
11664 verifyFormat("template <typename T> void operator=(T) && {}", AlignLeft);
11665 verifyFormat("for (foo<void() &&>& cb : X)", AlignLeft);
15639 FormatStyle AlignLeft = getLLVMStyleWithColumns(12);
15640 AlignLeft.AlignEscapedNewlines = FormatStyle::ENAS_Left;
15645 "#define A \"some text other\";", AlignLeft);