Lines Matching refs:FirstNonComment
3968 const auto *FirstNonComment = Line.getFirstNonComment(); in calculateFormattingInformation() local
3974 for (auto *Tok = FirstNonComment && FirstNonComment->isNot(tok::kw_using) in calculateFormattingInformation()
3975 ? FirstNonComment->Next in calculateFormattingInformation()
4001 (FirstNonComment && FirstNonComment->is(TT_CtorDtorDeclName))) && in calculateFormattingInformation()
4023 for (const auto *Tok = FirstNonComment; Tok; Tok = Tok->Next) { in calculateFormattingInformation()
5911 auto *FirstNonComment = Line.getFirstNonComment(); in mustBreakBefore() local
5913 FirstNonComment && (FirstNonComment->is(Keywords.kw_internal) || in mustBreakBefore()
5914 FirstNonComment->isAccessSpecifierKeyword()); in mustBreakBefore()
5922 if (AccessSpecifier && FirstNonComment->Next && in mustBreakBefore()
5923 FirstNonComment->Next->is(tok::kw_enum)) { in mustBreakBefore()
5930 ((AccessSpecifier && FirstNonComment->Next && in mustBreakBefore()
5931 FirstNonComment->Next->is(Keywords.kw_interface)) || in mustBreakBefore()