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

References

tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
 1055   if (NodeMatch.canConvertTo<Decl>()) {
 1056     addMatcher(NodeMatch.convertTo<Decl>(), Action);
 1058   } else if (NodeMatch.canConvertTo<QualType>()) {
 1059     addMatcher(NodeMatch.convertTo<QualType>(), Action);
 1061   } else if (NodeMatch.canConvertTo<Stmt>()) {
 1062     addMatcher(NodeMatch.convertTo<Stmt>(), Action);
 1064   } else if (NodeMatch.canConvertTo<NestedNameSpecifier>()) {
 1065     addMatcher(NodeMatch.convertTo<NestedNameSpecifier>(), Action);
 1067   } else if (NodeMatch.canConvertTo<NestedNameSpecifierLoc>()) {
 1068     addMatcher(NodeMatch.convertTo<NestedNameSpecifierLoc>(), Action);
 1070   } else if (NodeMatch.canConvertTo<TypeLoc>()) {
 1071     addMatcher(NodeMatch.convertTo<TypeLoc>(), Action);
 1073   } else if (NodeMatch.canConvertTo<CXXCtorInitializer>()) {
 1074     addMatcher(NodeMatch.convertTo<CXXCtorInitializer>(), Action);