Lines Matching refs:child
2698 to the referenced (child) context a copy of any PostScript code received.
2700 int DPSChainContext(DPSContext parent, DPSContext child)
2702 DPSContext cc = child->chainChild;
2704 if (child->chainParent != NIL)
2707 /* insert new child between parent and existing children */
2708 child->chainChild = parent->chainChild;
2711 child->chainChild->chainParent = child;
2713 child->chainParent = parent;
2714 parent->chainChild = child;
2715 /* if child has children, recursively chain them */
2718 (void) DPSChainContext(child, cc);
2733 if (c != NIL) { /* remove ctxt's child (if any) from ctxt's chain */
2734 DPSAssertWarn(c->chainParent == ctxt, (DPSPrivContext)c, "attempting to unchain context from wrong chain (child)");