Home | History | Annotate | Download | only in Core

Lines Matching defs:IsDead

756   bool IsDead;
758 ContextLocation(const PathDiagnosticLocation &L, bool isdead = false)
759 : PathDiagnosticLocation(L), IsDead(isdead) {}
761 void markDead() { IsDead = true; }
762 bool isDead() const { return IsDead; }
823 if (!CLocs.back().isDead() && CLocs.back().asLocation().isFileID()) {