Lines Matching refs:xImportedNode
753 Reference< XNode > const& xImportedNode, sal_Bool deep) in lcl_ImportNode()
756 NodeType aNodeType = xImportedNode->getNodeType(); in lcl_ImportNode()
761 Reference< XAttr > const xAttr(xImportedNode, UNO_QUERY_THROW); in lcl_ImportNode()
770 Reference< XCDATASection > const xCData(xImportedNode, in lcl_ImportNode()
779 Reference< XComment > const xComment(xImportedNode, in lcl_ImportNode()
788 Reference< XDocumentFragment > const xFrag(xImportedNode, in lcl_ImportNode()
797 Reference< XElement > const xElement(xImportedNode, in lcl_ImportNode()
799 OUString const aNsUri = xImportedNode->getNamespaceURI(); in lcl_ImportNode()
800 OUString const aNsPrefix = xImportedNode->getPrefix(); in lcl_ImportNode()
844 Reference< XEntityReference > const xRef(xImportedNode, in lcl_ImportNode()
853 Reference< XProcessingInstruction > const xPi(xImportedNode, in lcl_ImportNode()
863 Reference< XText > const xText(xImportedNode, UNO_QUERY_THROW); in lcl_ImportNode()
881 Reference< XNode > const xChild = xImportedNode->getFirstChild(); in lcl_ImportNode()
917 Reference< XNode > const& xImportedNode, sal_Bool deep) in importNode()
920 if (!xImportedNode.is()) { throw RuntimeException(); } in importNode()
938 if (xImportedNode->getOwnerDocument() == xDocument) { in importNode()
939 return xImportedNode; in importNode()
943 lcl_ImportNode(xDocument, xImportedNode, deep) ); in importNode()