Home
last modified time | relevance | path

Searched refs:BreakBeforeBinaryOperators (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Format/
H A DFormat.h928 BinaryOperatorStyle BreakBeforeBinaryOperators; member
3881 BreakBeforeBinaryOperators == R.BreakBeforeBinaryOperators &&
/llvm-project-15.0.7/clang/unittests/Format/
H A DFormatTest.cpp6328 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in TEST_F()
6413 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in TEST_F()
6503 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_None; in TEST_F()
6603 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_None; in TEST_F()
6645 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in TEST_F()
9617 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_None; in TEST_F()
9625 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in TEST_F()
9643 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in TEST_F()
15027 Tab.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in TEST_F()
20256 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in TEST_F()
[all …]
H A DFormatTestJava.cpp66 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_None; in TEST_F()
H A DFormatTestJS.cpp271 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in TEST_F()
/llvm-project-15.0.7/clang/lib/Format/
H A DFormat.cpp697 Style.BreakBeforeBinaryOperators); in mapping()
1210 LLVMStyle.BreakBeforeBinaryOperators = FormatStyle::BOS_None; in getLLVMStyle()
1445 GoogleStyle.BreakBeforeBinaryOperators = FormatStyle::BOS_NonAssignment; in getGoogleStyle()
1591 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in getWebKitStyle()
1611 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in getGNUStyle()
H A DTokenAnnotator.cpp4664 return Style.BreakBeforeBinaryOperators == FormatStyle::BOS_None; in canBreakBefore()
4666 return Style.BreakBeforeBinaryOperators != FormatStyle::BOS_None; in canBreakBefore()
4819 Style.BreakBeforeBinaryOperators != FormatStyle::BOS_None && in canBreakBefore()
4820 (Style.BreakBeforeBinaryOperators == FormatStyle::BOS_All || in canBreakBefore()
4915 Style.BreakBeforeBinaryOperators != FormatStyle::BOS_All && in canBreakBefore()
4916 (Style.BreakBeforeBinaryOperators == FormatStyle::BOS_None || in canBreakBefore()
H A DContinuationIndenter.cpp769 Style.BreakBeforeBinaryOperators != FormatStyle::BOS_None) || in addTokenOnCurrentLine()
812 if (Style.BreakBeforeBinaryOperators == FormatStyle::BOS_None) in addTokenOnCurrentLine()
/llvm-project-15.0.7/clang/docs/
H A DClangFormatStyleOptions.rst827 When ``BreakBeforeBinaryOperators`` is set, the wrapped operator is
839 ``BreakBeforeBinaryOperators`` is set, the operator is un-indented so
1701 **BreakBeforeBinaryOperators** (``BinaryOperatorStyle``) :versionbadge:`clang-format 3.6`