Home
last modified time | relevance | path

Searched refs:replaceChild (Results 1 – 23 of 23) sorted by relevance

/trunk/main/unoxml/qa/complex/unoxml/
H A DDOMTest.java515 xDoc.replaceChild(null, xText); in testXDocument()
519 xDoc.replaceChild(xText, null); in testXDocument()
523 xDoc.replaceChild(xElemFoo, xElemFoo); // not child in testXDocument()
530 xDoc.replaceChild(xElemFooNs, xElemFooNs); // child in testXDocument()
537 XNode xReplaced = xDoc.replaceChild(xPI, xComment); in testXDocument()
717 xDF.replaceChild(null, xText); in testXDocumentFragment()
721 xDF.replaceChild(xText, null); in testXDocumentFragment()
725 xDF.replaceChild(xElemFoo, xElemFoo); // not child in testXDocumentFragment()
732 xDF.replaceChild(xElemFoo, xElemFoo); // child in testXDocumentFragment()
739 XNode xReplaced = xDF.replaceChild(xText, xComment); in testXDocumentFragment()
[all …]
/trunk/main/unoxml/source/dom/
H A Ddocumentfragment.hxx142 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CDocumentFragment
145 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dnotation.hxx152 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CNotation
155 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dentity.hxx163 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CEntity
166 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dentityreference.hxx144 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CEntityReference
147 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dprocessinginstruction.hxx162 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CProcessingInstruction
165 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dattr.hxx175 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CAttr
178 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Ddocumenttype.hxx180 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CDocumentType
183 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dcharacterdata.hxx193 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CCharacterData
196 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dcomment.hxx177 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CComment
180 return CCharacterData::replaceChild(newChild, oldChild); in replaceChild()
H A Dtext.hxx196 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CText
199 return CCharacterData::replaceChild(newChild, oldChild); in replaceChild()
H A Dcdatasection.hxx181 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CCDATASection
184 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Delement.hxx241 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CElement
244 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Ddocument.hxx323 virtual Reference< XNode > SAL_CALL replaceChild( in replaceChild() function in DOM::CDocument
326 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dnode.hxx284 virtual Reference< XNode > SAL_CALL replaceChild(
H A Dnode.cxx821 Reference< XNode > SAL_CALL CNode::replaceChild( in replaceChild() function in DOM::CNode
/trunk/main/sd/source/ui/unoidl/
H A Drandomnode.cxx140 …Reference< XAnimationNode > SAL_CALL replaceChild( const Reference< XAnimationNode >& newChild, co…
642 Reference< XAnimationNode > SAL_CALL RandomAnimationNode::replaceChild( const Reference< XAnimation… in replaceChild() function in sd::RandomAnimationNode
/trunk/main/forms/source/xforms/submission/
H A Dreplace.cxx96 …Reference< XNode >(aDocument, UNO_QUERY_THROW)->replaceChild(aImportedNode, Reference< XNode >(old… in replace()
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/merger/merge/
H A DDocumentMerge.java240 parent.replaceChild(clonedNode, currElem); in replaceElement()
/trunk/main/offapi/com/sun/star/animations/
H A DXTimeContainer.idl103 XAnimationNode replaceChild( [in] XAnimationNode newChild, [in] XAnimationNode oldChild )
/trunk/main/animations/source/animcore/
H A Danimcore.cxx273 …virtual Reference< XAnimationNode > SAL_CALL replaceChild( const Reference< XAnimationNode >& newC…
1868 Reference< XAnimationNode > SAL_CALL AnimationNode::replaceChild( const Reference< XAnimationNode >… in replaceChild() function in animcore::AnimationNode
/trunk/main/offapi/com/sun/star/xml/dom/
H A DXNode.idl247 XNode replaceChild([in] XNode newChild, [in] XNode oldChild) raises (DOMException);
/trunk/main/forms/source/xforms/
H A Dmodel_ui.cxx650 xNode->getParentNode()->replaceChild( xNew, xNode ); in renameNode()