Home
last modified time | relevance | path

Searched refs:newChild (Results 1 – 21 of 21) sorted by relevance

/trunk/main/animations/source/animcore/
H A Danimcore.cxx1853 newChild->setParent( xThis ); in insertBefore()
1855 return newChild; in insertBefore()
1883 newChild->setParent( xThis ); in insertAfter()
1885 return newChild; in insertAfter()
1909 (*replace) = newChild; in replaceChild()
1912 newChild->setParent( xThis ); in replaceChild()
1914 return newChild; in replaceChild()
1948 if( !newChild.is() ) in appendChild()
1960 maChilds.push_back( newChild ); in appendChild()
1962 newChild->setParent( xThis ); in appendChild()
[all …]
/trunk/main/sd/source/ui/unoidl/
H A Drandomnode.cxx139 …Reference< XAnimationNode > SAL_CALL insertAfter( const Reference< XAnimationNode >& newChild, con…
142 …Reference< XAnimationNode > SAL_CALL appendChild( const Reference< XAnimationNode >& newChild ) th…
627 …L RandomAnimationNode::insertBefore( const Reference< XAnimationNode >& newChild, const Reference<… in insertBefore() argument
630 return appendChild( newChild ); in insertBefore()
636 …LL RandomAnimationNode::insertAfter( const Reference< XAnimationNode >& newChild, const Reference<… in insertAfter() argument
639 return appendChild( newChild ); in insertAfter()
645 …L RandomAnimationNode::replaceChild( const Reference< XAnimationNode >& newChild, const Reference<… in replaceChild() argument
648 return appendChild( newChild ); in replaceChild()
663 …tionNode > SAL_CALL RandomAnimationNode::appendChild( const Reference< XAnimationNode >& newChild ) in appendChild() argument
666 Reference< XAnimate > xAnimate( newChild, UNO_QUERY ); in appendChild()
[all …]
/trunk/main/offapi/com/sun/star/xml/dom/
H A DXNode.idl84 Adds the node newChild to the end of the list of children of this node.
85 @param newChild
89 not allow children of the type of the newChild node, or if the
91 <p>WRONG_DOCUMENT_ERR: Raised if newChild was created from a different
96 XNode appendChild([in] XNode newChild) raises (DOMException);
196 Inserts the node newChild before the existing child node refChild.
199 not allow children of the type of the newChild node, or if the
207 XNode insertBefore([in] XNode newChild, [in] XNode refChild) raises (DOMException);
234 Replaces the child node oldChild with newChild in the list of children,
238 does not allow children of the type of the newChild node, or
[all …]
/trunk/main/unoxml/source/dom/
H A Ddocumentfragment.hxx63 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
66 return CNode::appendChild(newChild); in appendChild()
144 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
147 return CNode::insertBefore(newChild, refChild); in insertBefore()
165 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
168 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dentityreference.hxx65 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
68 return CNode::appendChild(newChild); in appendChild()
146 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
149 return CNode::insertBefore(newChild, refChild); in insertBefore()
167 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
170 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dnotation.hxx73 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
76 return CNode::appendChild(newChild); in appendChild()
154 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
157 return CNode::insertBefore(newChild, refChild); in insertBefore()
175 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
178 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dprocessinginstruction.hxx84 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
87 return CNode::appendChild(newChild); in appendChild()
165 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
168 return CNode::insertBefore(newChild, refChild); in insertBefore()
186 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
189 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Ddocumenttype.hxx101 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
104 return CNode::appendChild(newChild); in appendChild()
182 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
185 return CNode::insertBefore(newChild, refChild); in insertBefore()
203 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
206 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dentity.hxx84 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
87 return CNode::appendChild(newChild); in appendChild()
165 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
168 return CNode::insertBefore(newChild, refChild); in insertBefore()
186 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
189 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dattr.hxx107 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
110 return CNode::appendChild(newChild); in appendChild()
177 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
180 return CNode::insertBefore(newChild, refChild); in insertBefore()
198 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
201 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dcharacterdata.hxx110 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
113 return CNode::appendChild(newChild); in appendChild()
201 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
204 return CNode::insertBefore(newChild, refChild); in insertBefore()
222 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
225 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dcdatasection.hxx109 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
112 return CNode::appendChild(newChild); in appendChild()
190 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
193 return CNode::insertBefore(newChild, refChild); in insertBefore()
211 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
214 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dcomment.hxx104 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
107 return CCharacterData::appendChild(newChild); in appendChild()
185 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
188 return CCharacterData::insertBefore(newChild, refChild); in insertBefore()
206 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
209 return CCharacterData::replaceChild(newChild, oldChild); in replaceChild()
H A Dtext.hxx119 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
122 return CCharacterData::appendChild(newChild); in appendChild()
204 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
207 return CCharacterData::insertBefore(newChild, refChild); in insertBefore()
225 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
228 return CCharacterData::replaceChild(newChild, oldChild); in replaceChild()
H A Delement.hxx189 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
192 return CNode::appendChild(newChild); in appendChild()
260 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
263 return CNode::insertBefore(newChild, refChild); in insertBefore()
281 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
284 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Ddocument.hxx266 virtual Reference< XNode > SAL_CALL appendChild(const Reference< XNode >& newChild) in appendChild() argument
269 return CNode::appendChild(newChild); in appendChild()
342 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
345 return CNode::insertBefore(newChild, refChild); in insertBefore()
363 const Reference< XNode >& newChild, const Reference< XNode >& oldChild) in replaceChild()
366 return CNode::replaceChild(newChild, oldChild); in replaceChild()
H A Dnode.cxx664 const Reference< XNode >& newChild, const Reference< XNode >& refChild) in insertBefore()
667 if (!newChild.is() || !refChild.is()) { throw RuntimeException(); } in insertBefore()
669 if (newChild->getOwnerDocument() != getOwnerDocument()) { in insertBefore()
682 CNode *const pNewNode(CNode::GetImplementation(newChild)); in insertBefore()
710 return appendChild(newChild); in insertBefore()
H A Dnode.hxx275 const Reference< XNode >& newChild, const Reference< XNode >& refChild)
307 const Reference< XNode >& newChild, const Reference< XNode >& oldChild)
/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/tree/
H A DAccessibilityModel.java79 public void addNodeInto(MutableTreeNode newChild, MutableTreeNode parent) { in addNodeInto() argument
81 if (newChild != null && newChild.getParent() == parent) { in addNodeInto()
84 insertNodeInto(newChild, parent, index); in addNodeInto()
/trunk/main/offapi/com/sun/star/animations/
H A DXTimeContainer.idl87 XAnimationNode insertBefore( [in] XAnimationNode newChild, [in] XAnimationNode refChild )
95 XAnimationNode insertAfter( [in] XAnimationNode newChild, [in] XAnimationNode refChild )
103 XAnimationNode replaceChild( [in] XAnimationNode newChild, [in] XAnimationNode oldChild )
118 XAnimationNode appendChild( [in] XAnimationNode newChild )
/trunk/main/xmlhelp/source/treeview/
H A Dtvread.cxx71 TVDom* newChild() in newChild() function in treeview::TVDom
448 *tvDom = p->newChild(); in start_handler()

Completed in 95 milliseconds