Home
last modified time | relevance | path

Searched refs:oldChild (Results 1 – 18 of 18) sorted by relevance

/trunk/main/unoxml/source/dom/
H A Ddocumentfragment.hxx159 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 Dentityreference.hxx161 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 Dnotation.hxx169 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 Dprocessinginstruction.hxx180 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 Ddocumenttype.hxx197 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 Dentity.hxx180 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 Dattr.hxx192 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 Dcharacterdata.hxx216 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 Dcdatasection.hxx205 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 Dcomment.hxx200 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 Dtext.hxx219 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 Delement.hxx275 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 Ddocument.hxx357 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 Dnode.hxx299 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 DXNode.idl225 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 Danimcore.cxx273 …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 Drandomnode.cxx140 …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 DXTimeContainer.idl103 XAnimationNode replaceChild( [in] XAnimationNode newChild, [in] XAnimationNode oldChild )
111 XAnimationNode removeChild( [in] XAnimationNode oldChild )

Completed in 73 milliseconds