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

References

include/llvm/Support/Allocator.h
   81   template <typename T> T *Allocate(size_t Num = 1) {
   82     return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));
   82     return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));
tools/clang/tools/libclang/CXLoadedDiagnostic.cpp
   90 static CXSourceLocation makeLocation(const CXLoadedDiagnostic::Location *DLoc) {
  170   const Location &Loc = *((Location*)V);
  210                                CXLoadedDiagnostic::Location &LoadedLoc);
  273                          CXLoadedDiagnostic::Location &LoadedLoc) {
  292   CXLoadedDiagnostic::Location *Start, *End;
  293   Start = TopDiags->Alloc.Allocate<CXLoadedDiagnostic::Location>();
  294   End = TopDiags->Alloc.Allocate<CXLoadedDiagnostic::Location>();
tools/clang/tools/libclang/CXLoadedDiagnostic.h
   81   Location DiagLoc;