Home | History | Annotate | Download | only in Format

Lines Matching defs:Style

23                             unsigned Length, const FormatStyle &Style) {
27 tooling::Replacements Replaces = reformat(Style, Code, Ranges);
36 const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_Java)) {
37 return format(Code, 0, Code.size(), Style);
41 FormatStyle Style = getGoogleStyle(FormatStyle::LK_Java);
42 Style.ColumnLimit = ColumnLimit;
43 return Style;
48 const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_Java)) {
49 EXPECT_EQ(Code.str(), format(test::messUp(Code), Style));
62 FormatStyle Style = getStyleWithColumns(50);
65 Style);
66 Style.BreakBeforeBinaryOperators = FormatStyle::BOS_None;
69 Style);
236 FormatStyle Style = getStyleWithColumns(65);
237 Style.Cpp11BracedListStyle = false;
241 Style);