Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/include/clang/Format/
H A DFormat.h306 BinaryOperatorStyle BreakBeforeBinaryOperators; member
433 BreakBeforeBinaryOperators == R.BreakBeforeBinaryOperators &&
/minix3/external/bsd/llvm/dist/clang/unittests/Format/
H A DFormatTestJava.cpp66 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_None; in TEST_F()
H A DFormatTest.cpp3296 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in TEST_F()
3360 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_NonAssignment; in TEST_F()
3392 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_NonAssignment; in TEST_F()
8761 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in TEST_F()
8763 BreakBeforeBinaryOperators, FormatStyle::BOS_NonAssignment); in TEST_F()
8764 CHECK_PARSE("BreakBeforeBinaryOperators: None", BreakBeforeBinaryOperators, in TEST_F()
8766 CHECK_PARSE("BreakBeforeBinaryOperators: All", BreakBeforeBinaryOperators, in TEST_F()
8769 CHECK_PARSE("BreakBeforeBinaryOperators: false", BreakBeforeBinaryOperators, in TEST_F()
8771 CHECK_PARSE("BreakBeforeBinaryOperators: true", BreakBeforeBinaryOperators, in TEST_F()
/minix3/external/bsd/llvm/dist/clang/lib/Format/
H A DFormat.cpp198 Style.BreakBeforeBinaryOperators); in mapping()
345 LLVMStyle.BreakBeforeBinaryOperators = FormatStyle::BOS_None; in getLLVMStyle()
426 GoogleStyle.BreakBeforeBinaryOperators = FormatStyle::BOS_NonAssignment; in getGoogleStyle()
482 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in getWebKitStyle()
499 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All; in getGNUStyle()
H A DTokenAnnotator.cpp2034 Style.BreakBeforeBinaryOperators != FormatStyle::BOS_None && in canBreakBefore()
2035 (Style.BreakBeforeBinaryOperators == FormatStyle::BOS_All || in canBreakBefore()
2043 Style.BreakBeforeBinaryOperators != FormatStyle::BOS_All && in canBreakBefore()
2044 (Style.BreakBeforeBinaryOperators == FormatStyle::BOS_None || in canBreakBefore()
H A DContinuationIndenter.cpp172 if (Style.BreakBeforeBinaryOperators == FormatStyle::BOS_None) { in mustBreak()
749 Style.BreakBeforeBinaryOperators != FormatStyle::BOS_None) || in moveStatePastFakeLParens()
/minix3/external/bsd/llvm/dist/clang/docs/
H A DClangFormatStyleOptions.rst232 **BreakBeforeBinaryOperators** (``BinaryOperatorStyle``)