Home | History | Annotate | Download | only in Format

Lines Matching refs:Style

415   bool opensBlockOrBlockTypeList(const FormatStyle &Style) const {
419 (!Style.Cpp11BracedListStyle && NestingLevel == 0)));
423 bool closesBlockOrBlockTypeList(const FormatStyle &Style) const {
424 return MatchingParen && MatchingParen->opensBlockOrBlockTypeList(Style);
438 TokenRole(const FormatStyle &Style) : Style(Style) {}
469 const FormatStyle &Style;
474 CommaSeparatedList(const FormatStyle &Style)
475 : TokenRole(Style), HasNestedBracedList(false) {}