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

References

tools/clang/lib/Format/TokenAnnotator.cpp
 1295     if (Current.getPrecedence() == prec::Assignment &&
 1303         (!Current.Previous || Current.Previous->isNot(tok::kw_operator))) {
 1303         (!Current.Previous || Current.Previous->isNot(tok::kw_operator))) {
 1306         for (FormatToken *Previous = Current.Previous;
 1323     } else if (Current.is(tok::lessless) &&
 1324                (!Current.Previous || !Current.Previous->is(tok::kw_operator))) {
 1324                (!Current.Previous || !Current.Previous->is(tok::kw_operator))) {
 1326     } else if (Current.isOneOf(tok::kw_return, tok::kw_throw)) {
 1328     } else if (Current.is(TT_TrailingReturnArrow)) {
 1330     } else if (Current.is(TT_LambdaArrow) || Current.is(Keywords.kw_assert)) {
 1330     } else if (Current.is(TT_LambdaArrow) || Current.is(Keywords.kw_assert)) {
 1332     } else if (Current.Previous &&
 1333                Current.Previous->is(TT_CtorInitializerColon)) {
 1336     } else if (Current.Previous && Current.Previous->is(TT_InheritanceColon)) {
 1336     } else if (Current.Previous && Current.Previous->is(TT_InheritanceColon)) {
 1338     } else if (Current.isOneOf(tok::r_paren, tok::greater, tok::comma)) {
 1339       for (FormatToken *Previous = Current.Previous;
 1345     } else if (Current.is(tok::kw_new)) {
 1347     } else if (Current.isOneOf(tok::semi, tok::exclaim)) {