reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
512 return reinterpret_cast<EHScope*>(Ptr); 543 Ptr += llvm::alignTo(Size, ScopeStackAlignment); 559 bool encloses(iterator other) const { return Ptr >= other.Ptr; } 559 bool encloses(iterator other) const { return Ptr >= other.Ptr; } 560 bool strictlyEncloses(iterator other) const { return Ptr > other.Ptr; } 560 bool strictlyEncloses(iterator other) const { return Ptr > other.Ptr; } 562 bool operator==(iterator other) const { return Ptr == other.Ptr; } 562 bool operator==(iterator other) const { return Ptr == other.Ptr; } 563 bool operator!=(iterator other) const { return Ptr != other.Ptr; } 563 bool operator!=(iterator other) const { return Ptr != other.Ptr; } 598 assert(StartOfData <= ir.Ptr && ir.Ptr <= EndOfBuffer); 598 assert(StartOfData <= ir.Ptr && ir.Ptr <= EndOfBuffer); 599 return stable_iterator(EndOfBuffer - ir.Ptr);