Lines Matching refs:doc
280 defproperty(Node, "firstChild", doc="First child node, or None.")
281 defproperty(Node, "lastChild", doc="Last child node, or None.")
282 defproperty(Node, "localName", doc="Namespace-local name of this node.")
441 doc = self.ownerDocument
443 if doc is None or elem is None:
446 info = doc._get_elem_info(elem)
455 doc = self.ownerDocument
457 if doc is None or elem is None:
460 info = doc._get_elem_info(elem)
468 defproperty(Attr, "isId", doc="True if this attribute is an ID.")
469 defproperty(Attr, "localName", doc="Namespace-local name of this attribute.")
470 defproperty(Attr, "schemaType", doc="Schema type for this attribute.")
637 doc="Number of nodes in the NamedNodeMap.")
935 doc="NamedNodeMap of attributes on the element.")
937 doc="Namespace-local name of this element.")
1089 defproperty(CharacterData, "length", doc="Length of the string data.")
1178 doc="True iff this text node contains only whitespace"
1181 doc="The text of all logically-adjacent text nodes.")
1290 doc="Number of entries in the NamedNodeMap.")
1437 doc = self._create_document()
1466 element = doc.createElementNS(namespaceURI, qualifiedName)
1468 doc.appendChild(doctype)
1469 doc.appendChild(element)
1472 doctype.parentNode = doctype.ownerDocument = doc
1474 doc.doctype = doctype
1475 doc.implementation = self
1476 return doc
1886 doc="Top-level element of this document.")