Searched refs:ownerNode (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DAttributeMap.java55 protected AttributeMap(ElementImpl ownerNode, NamedNodeMapImpl defaults) { argument
56 super(ownerNode);
78 boolean errCheck = ownerNode.ownerDocument().errorChecking;
84 if (arg.getOwnerDocument() != ownerNode.ownerDocument()) {
96 if (errCheck && argn.getOwnerElement() != ownerNode) {
106 argn.ownerNode = ownerNode;
114 previous.ownerNode = ownerNode.ownerDocument();
127 ownerNode
479 cloneMap(NodeImpl ownerNode) argument
[all...]
H A DChildNode.java115 // if we have an owner, ownerNode is our parent, otherwise it's
117 return isOwned() ? ownerNode : null;
124 // if we have an owner, ownerNode is our parent, otherwise it's
126 return isOwned() ? ownerNode : null;
H A DProcessingInstructionImpl.java157 return ownerNode.getBaseURI();
H A DNamedNodeMapImpl.java85 protected NodeImpl ownerNode; // the node this map belongs to field in class:NamedNodeMapImpl
92 protected NamedNodeMapImpl(NodeImpl ownerNode) { argument
93 this.ownerNode = ownerNode;
181 CoreDocumentImpl ownerDocument = ownerNode.ownerDocument();
223 CoreDocumentImpl ownerDocument = ownerNode.ownerDocument();
333 public NamedNodeMapImpl cloneMap(NodeImpl ownerNode) { argument
334 NamedNodeMapImpl newmap = new NamedNodeMapImpl(ownerNode);
H A DNodeImpl.java70 * And when a node doesn't have an owner, ownerNode refers to its
149 protected NodeImpl ownerNode; // typically the parent but not always! field in class:NodeImpl
177 // as long as we do not have any owner, ownerNode is our ownerDocument
178 ownerNode = ownerDocument;
281 newnode.ownerNode = ownerDocument();
302 // otherwise ownerNode is our ownerDocument
304 return ownerNode.ownerDocument();
306 return (Document) ownerNode;
316 // otherwise ownerNode is our ownerDocument
318 return ownerNode
[all...]
H A DAttrImpl.java63 * Note: The ownerNode attribute is used to store the Element the Attr
185 text.ownerNode = this;
377 textNode.ownerNode = this;
400 firstChild.ownerNode = ownerDocument;
520 // if we have an owner, ownerNode is our ownerElement, otherwise it's
522 return (Element) (isOwned() ? ownerNode : null);
532 // if we have an owner, ownerNode is our ownerElement, otherwise it's
534 return (Element) (isOwned() ? ownerNode : null);
817 newInternal.ownerNode = this;
948 oldInternal.ownerNode
[all...]
H A DElementNSImpl.java369 NodeImpl parentOrOwner = (parentNode() != null) ? parentNode() : ownerNode;
408 String baseURI = (this.ownerNode != null) ? this.ownerNode.getBaseURI() : null ;
H A DElementImpl.java188 String parentBaseURI = (this.ownerNode != null) ? this.ownerNode.getBaseURI() : null;
211 // ownerNode serves as a parent or as document
212 String baseURI = (this.ownerNode != null) ? this.ownerNode.getBaseURI() : null ;
H A DParentNode.java400 newInternal.ownerNode = this;
558 oldInternal.ownerNode = ownerDocument;
H A DDocumentImpl.java1252 dispatchAggregateEvents(attr.ownerNode, attr, null,
1256 dispatchAggregateEvents(attr.ownerNode, attr,
H A DDeferredDocumentImpl.java1648 node.ownerNode = this;
1712 node.ownerNode = a;
1762 node.ownerNode = p;

Completed in 812 milliseconds