/trunk/main/unoxml/source/dom/ |
H A D | documentfragment.hxx | 159 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 162 return CNode::removeChild(oldChild); in removeChild() 165 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 168 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | entityreference.hxx | 161 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 164 return CNode::removeChild(oldChild); in removeChild() 167 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 170 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | notation.hxx | 169 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 172 return CNode::removeChild(oldChild); in removeChild() 175 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 178 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | processinginstruction.hxx | 180 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 183 return CNode::removeChild(oldChild); in removeChild() 186 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 189 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | documenttype.hxx | 197 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 200 return CNode::removeChild(oldChild); in removeChild() 203 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 206 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | entity.hxx | 180 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 183 return CNode::removeChild(oldChild); in removeChild() 186 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 189 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | attr.hxx | 192 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 195 return CNode::removeChild(oldChild); in removeChild() 198 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 201 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | characterdata.hxx | 216 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 219 return CNode::removeChild(oldChild); in removeChild() 222 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 225 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | cdatasection.hxx | 205 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 208 return CNode::removeChild(oldChild); in removeChild() 211 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 214 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | comment.hxx | 200 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 203 return CCharacterData::removeChild(oldChild); in removeChild() 206 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 209 return CCharacterData::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | text.hxx | 219 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 222 return CCharacterData::removeChild(oldChild); in removeChild() 225 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 228 return CCharacterData::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | element.hxx | 275 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 278 return CNode::removeChild(oldChild); in removeChild() 281 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 284 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | document.hxx | 357 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) in removeChild() argument 360 return CNode::removeChild(oldChild); in removeChild() 363 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild() 366 return CNode::replaceChild(newChild, oldChild); in replaceChild()
|
H A D | node.hxx | 299 virtual Reference< XNode > SAL_CALL removeChild(const Reference< XNode >& oldChild) 307 const Reference< XNode >& newChild, const Reference< XNode >& oldChild)
|
/trunk/main/offapi/com/sun/star/xml/dom/ |
H A D | XNode.idl | 225 Removes the child node indicated by oldChild from the list of children, 229 <p>NOT_FOUND_ERR: Raised if oldChild is not a child of this node. 231 XNode removeChild([in] XNode oldChild) raises (DOMException); 234 Replaces the child node oldChild with newChild in the list of children, 235 and returns the oldChild node. 245 <p>NOT_FOUND_ERR: Raised if oldChild is not a child of this node. 247 XNode replaceChild([in] XNode newChild, [in] XNode oldChild) raises (DOMException);
|
/trunk/main/animations/source/animcore/ |
H A D | animcore.cxx | 273 …ference< XAnimationNode >& newChild, const Reference< XAnimationNode >& oldChild ) throw( IllegalA… 274 …nimationNode > SAL_CALL removeChild( const Reference< XAnimationNode >& oldChild ) throw(IllegalAr… 1891 …ceChild( const Reference< XAnimationNode >& newChild, const Reference< XAnimationNode >& oldChild ) in replaceChild() argument 1896 if( !newChild.is() || !oldChild.is() ) in replaceChild() 1899 ChildList_t::iterator replace = ::std::find(maChilds.begin(), maChilds.end(), oldChild); in replaceChild() 1907 oldChild->setParent( xNull ); in replaceChild() 1920 …XAnimationNode > SAL_CALL AnimationNode::removeChild( const Reference< XAnimationNode >& oldChild ) in removeChild() argument 1925 if( !oldChild.is() ) in removeChild() 1928 ChildList_t::iterator old = ::std::find(maChilds.begin(), maChilds.end(), oldChild); in removeChild() 1933 oldChild->setParent( xNull ); in removeChild() [all …]
|
/trunk/main/sd/source/ui/unoidl/ |
H A D | randomnode.cxx | 140 …ference< XAnimationNode >& newChild, const Reference< XAnimationNode >& oldChild ) throw (IllegalA… 141 …Reference< XAnimationNode > SAL_CALL removeChild( const Reference< XAnimationNode >& oldChild ) th… 654 …tionNode > SAL_CALL RandomAnimationNode::removeChild( const Reference< XAnimationNode >& oldChild ) in removeChild() argument 657 return oldChild; in removeChild()
|
/trunk/main/offapi/com/sun/star/animations/ |
H A D | XTimeContainer.idl | 103 XAnimationNode replaceChild( [in] XAnimationNode newChild, [in] XAnimationNode oldChild ) 111 XAnimationNode removeChild( [in] XAnimationNode oldChild )
|