Lines Matching refs:deep
205 def cloneNode(self, deep): argument
206 return _clone_node(self, deep, self.ownerDocument or self)
1300 def cloneNode(self, deep): argument
1307 if deep:
1625 def cloneNode(self, deep): argument
1626 if not deep:
1633 childclone = _clone_node(n, deep, clone)
1782 def importNode(self, node, deep): argument
1787 return _clone_node(node, deep, self)
1857 def _clone_node(node, deep, newOwnerDocument): argument
1874 if deep:
1876 c = _clone_node(child, deep, newOwnerDocument)
1881 if deep:
1883 c = _clone_node(child, deep, newOwnerDocument)
1906 if deep: