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

Declarations

tools/clang/tools/libclang/CXCursor.h
   91 CXCursor MakeCursorTypeRef(const TypeDecl *Type, SourceLocation Loc,

References

tools/clang/tools/libclang/CIndex.cpp
 1345       return Visit(MakeCursorTypeRef(Typedef->getDecl(), Range.getBegin(), TU));
 1347       return Visit(MakeCursorTypeRef(Tag->getDecl(), Range.getBegin(), TU));
 1557       return Visit(MakeCursorTypeRef(Typedef->getDecl(), TL.getBuiltinLoc(),
 1565   return Visit(MakeCursorTypeRef(TL.getTypedefNameDecl(), TL.getNameLoc(), TU));
 1569   return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
 1576   return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
 1580   return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
 1588   if (Visit(MakeCursorTypeRef(TL.getDecl(), TL.getBeginLoc(), TU)))
 1764   return Visit(MakeCursorTypeRef(TL.getDecl(), TL.getNameLoc(), TU));
 3140           if (Visit(MakeCursorTypeRef(cast<TemplateTypeParmDecl>(Pack),
tools/clang/tools/libclang/CXCursor.cpp
 1140     return MakeCursorTypeRef(Typedef->getDecl(), Loc, TU);
 1142     return MakeCursorTypeRef(Tag->getDecl(), Loc, TU);
 1144     return MakeCursorTypeRef(TemplP->getDecl(), Loc, TU);
tools/clang/tools/libclang/CXIndexDataConsumer.cpp
 1197     return MakeCursorTypeRef(TD, Loc, CXTU);