Lines Matching refs:xImpl
219 MutableTreeNodeRef xImpl( dynamic_cast< MutableTreeNode* >( xNode.get() ) ); in setRoot() local
220 if( !xImpl.is() || xImpl->mbIsInserted ) in setRoot()
223 xImpl->mbIsInserted = true; in setRoot()
224 mxRootNode.set(xImpl.get()); in setRoot()
402 MutableTreeNodeRef xImpl( dynamic_cast< MutableTreeNode* >( xNode.get() ) ); in appendChild() local
404 if( !xImpl.is() || xImpl->mbIsInserted || (this == xImpl.get()) ) in appendChild()
407 maChilds.push_back( xImpl ); in appendChild()
408 xImpl->setParent(this); in appendChild()
409 xImpl->mbIsInserted = true; in appendChild()
424 MutableTreeNodeRef xImpl( dynamic_cast< MutableTreeNode* >( xNode.get() ) ); in insertChildByIndex() local
425 if( !xImpl.is() || xImpl->mbIsInserted || (this == xImpl.get()) ) in insertChildByIndex()
428 xImpl->mbIsInserted = true; in insertChildByIndex()
434 maChilds.insert( aIter, xImpl ); in insertChildByIndex()
435 xImpl->setParent( this ); in insertChildByIndex()
446 MutableTreeNodeRef xImpl; in removeChildByIndex() local
456 xImpl = (*aIter); in removeChildByIndex()
461 if( !xImpl.is() ) in removeChildByIndex()
464 xImpl->setParent(0); in removeChildByIndex()
465 xImpl->mbIsInserted = false; in removeChildByIndex()
467 broadcast_changes( getReference( xImpl.get() ), false ); in removeChildByIndex()
581 MutableTreeNodeRef xImpl( MutableTreeNode::getImplementation( xNode, false ) ); in getIndex() local
582 if( xImpl.is() ) in getIndex()
587 if( maChilds[nChildCount] == xImpl ) in getIndex()