Lines Matching defs:parent
2695 a copy of the PostScript code sent to the referenced (parent) context.
2700 int DPSChainContext(DPSContext parent, DPSContext child)
2707 /* insert new child between parent and existing children */
2708 child->chainChild = parent->chainChild;
2709 if (parent->chainChild != NIL) {
2710 DPSAssertWarn(parent->chainChild->chainParent == parent, (DPSPrivContext)parent, "attempting to chain context on invalid chain");
2713 child->chainParent = parent;
2714 parent->chainChild = child;
2728 if (p != NIL) { /* remove ctxt from parent's chain */
2729 DPSAssertWarn(p->chainChild == ctxt, (DPSPrivContext)p, "attempting to unchain context from wrong chain (parent)");