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

References

tools/clang/lib/AST/Interp/Block.cpp
   24   if (Pointers)
   25     Pointers->Prev = P;
   26   P->Next = Pointers;
   28   Pointers = P;
   34   if (Pointers == P)
   35     Pointers = P->Next;
   43   if (Pointers == nullptr && IsDead)
   56   if (Pointers == From)
   57     Pointers = To;
   74   B.Pointers = Blk->Pointers;
   74   B.Pointers = Blk->Pointers;
   75   for (Pointer *P = Blk->Pointers; P; P = P->Next)
tools/clang/lib/AST/Interp/Block.h
   51   bool hasPointers() const { return Pointers; }