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

References

include/llvm/ADT/AllocatorList.h
   59     AllocatorList &AL;
   61     Cloner(AllocatorList &AL) : AL(AL) {}
   67     AllocatorList &AL;
   69     Disposer(AllocatorList &AL) : AL(AL) {}
  140   AllocatorList(AllocatorList &&X)
  143   AllocatorList(const AllocatorList &X) {
  147   AllocatorList &operator=(AllocatorList &&X) {
  147   AllocatorList &operator=(AllocatorList &&X) {
  154   AllocatorList &operator=(const AllocatorList &X) {
  154   AllocatorList &operator=(const AllocatorList &X) {
  161   void swap(AllocatorList &RHS) {
  236 template <class T> using BumpPtrList = AllocatorList<T, BumpPtrAllocator>;
lib/Support/YAMLParser.cpp
  166 using TokenQueueT = BumpPtrList<Token>;