reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Format/TokenAnnotator.cpp
 2106     Next = skipOperatorName(Next);
 2106     Next = skipOperatorName(Next);
 2110     for (; Next; Next = Next->Next) {
 2110     for (; Next; Next = Next->Next) {
 2110     for (; Next; Next = Next->Next) {
 2111       if (Next->is(TT_TemplateOpener)) {
 2112         Next = Next->MatchingParen;
 2112         Next = Next->MatchingParen;
 2113       } else if (Next->is(tok::coloncolon)) {
 2114         Next = Next->Next;
 2114         Next = Next->Next;
 2115         if (!Next)
 2117         if (Next->is(tok::kw_operator)) {
 2118           Next = skipOperatorName(Next->Next);
 2118           Next = skipOperatorName(Next->Next);
 2121         if (!Next->is(tok::identifier))
 2123       } else if (Next->is(tok::l_paren)) {
 2132   if (!Next || !Next->is(tok::l_paren) || !Next->MatchingParen)
 2132   if (!Next || !Next->is(tok::l_paren) || !Next->MatchingParen)
 2132   if (!Next || !Next->is(tok::l_paren) || !Next->MatchingParen)
 2137   if (Next->Next == Next->MatchingParen)
 2137   if (Next->Next == Next->MatchingParen)
 2140   if (Next->MatchingParen->Next &&
 2141       Next->MatchingParen->Next->is(TT_PointerOrReference))
 2143   for (const FormatToken *Tok = Next->Next; Tok && Tok != Next->MatchingParen;
 2143   for (const FormatToken *Tok = Next->Next; Tok && Tok != Next->MatchingParen;