Lines Matching refs:deep
204 def cloneNode(self, deep): argument
205 return _clone_node(self, deep, self.ownerDocument or self)
1255 def cloneNode(self, deep): argument
1262 if deep:
1578 def cloneNode(self, deep): argument
1579 if not deep:
1586 childclone = _clone_node(n, deep, clone)
1735 def importNode(self, node, deep): argument
1740 return _clone_node(node, deep, self)
1812 def _clone_node(node, deep, newOwnerDocument): argument
1829 if deep:
1831 c = _clone_node(child, deep, newOwnerDocument)
1836 if deep:
1838 c = _clone_node(child, deep, newOwnerDocument)
1861 if deep: