Lines Matching defs:attached
383 /// Represents a diagnostic handler attached to the context. The handler's
396 /// in an attached state and can transition to a detached state by either:
410 /// Detaches the handler. Does nothing if not attached.
610 /// Operations exist in either an attached (dependent) or detached (top-level)
613 /// drops to zero or it is attached to a parent, at which point its lifetime
659 bool isAttached() { return attached; }
661 assert(!attached && "operation already attached");
662 attached = true;
665 assert(attached && "operation already detached");
666 attached = false;
721 // transitions from detached to attached and address TODOs in the
724 bool attached = true;