Lines Matching refs:of

9  * with the License.  You may obtain a copy of the License at
55 there is no obvious mapping of these attributes for a specific nodeType (e.g., nodeValue
60 <p>The values of nodeName, nodeValue, and attributes vary according to the node type as follows:
63 <tr><th>Attr </th><td>name of attribute </td><td>value of attribute …
64 <tr><th>CDATASection </th><td>"#cdata-section" </td><td>content of the CDATA Section </t…
65 <tr><th>Comment </th><td>"#comment" </td><td>content of the comment …
71 <tr><th>EntityReference </th><td>name of entity referenced </td><td>null </td><td>nul…
74 <tr><th>Text </th><td>"#text" </td><td>content of the text node </td><td…
84 Adds the node newChild to the end of the list of children of this node.
88 <p>HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does
89 not allow children of the type of the newChild node, or if the
90 node to append is one of this node's ancestors or this node itself.</p>
94 the previous parent of the node being inserted is readonly.</p>
99 Returns a duplicate of this node, i.e., serves as a generic copy
111 A NamedNodeMap containing the attributes of this node (if it is an Element)
117 A NodeList that contains all children of this node.
122 The first child of this node.
127 The last child of this node.
132 Returns the local part of the qualified name of this node.
137 The namespace URI of this node, or null if it is unspecified.
147 The name of this node, depending on its type; see the table above.
152 A code representing the type of the underlying object, as defined above.
157 The value of this node, depending on its type; see the table above.
171 The parent of this node.
176 The namespace prefix of this node, or null if it is unspecified.
198 <p>HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does
199 not allow children of the type of the newChild node, or if the
200 node to insert is one of this node's ancestors or this node itself.
204 parent of the node being inserted is readonly.
205 <p>NOT_FOUND_ERR: Raised if refChild is not a child of this node.
216 Puts all Text nodes in the full depth of the sub-tree underneath this
225 Removes the child node indicated by oldChild from the list of children,
229 <p>NOT_FOUND_ERR: Raised if oldChild is not a child of this node.
234 Replaces the child node oldChild with newChild in the list of children,
237 <p>HIERARCHY_REQUEST_ERR: Raised if this node is of a type that
238 does not allow children of the type of the newChild node, or
239 if the node to put in is one of this node's ancestors or this
243 <p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the parent of the
245 <p>NOT_FOUND_ERR: Raised if oldChild is not a child of this node.
250 The value of this node, depending on its type; see the table above.
259 The namespace prefix of this node, or null if it is unspecified.
265 … in XML specification, if the namespaceURI of this node is null, if the specified
266 prefix is "xml" and the namespaceURI of this node is different from
268 … specified prefix is "xmlns" and the namespaceURI of this node is different from
270 of this node is "xmlns" .