Lines Matching refs:m_aChildren

1169 …ector< Reference< ::com::sun::star::form::XFormComponent > >::iterator aIter = m_aChildren.begin();  in dispose()
1170 aIter != m_aChildren.end(); in dispose()
1186 m_aChildren.clear(); in dispose()
1512 if (sal::static_int_cast< sal_uInt32 >(nIndex) > m_aChildren.size()) in IMPLEMENT_LISTENER_ADMINISTRATION()
1513 nIndex = m_aChildren.size(); in IMPLEMENT_LISTENER_ADMINISTRATION()
1515 …DBG_ASSERT(m_aChildren.size() == m_aChildNames.size(), "SAL_CALL SbaXFormAdapter::implInsert : inc… in IMPLEMENT_LISTENER_ADMINISTRATION()
1516 m_aChildren.insert(m_aChildren.begin() + nIndex, xElement); in IMPLEMENT_LISTENER_ADMINISTRATION()
1551 implInsert(aElement, m_aChildren.size(), &aName); in insertByName()
1586 return makeAny(m_aChildren[nPos]); in getByName()
1613 return m_aChildren.size() > 0; in hasElements()
1621 if ( ( _rIndex < 0 ) || ( (size_t)_rIndex >= m_aChildren.size() ) ) in insertByIndex()
1629 if ( ( _rIndex < 0 ) || ( (size_t)_rIndex >= m_aChildren.size() ) ) in removeByIndex()
1632 Reference< ::com::sun::star::form::XFormComponent > xAffected = *(m_aChildren.begin() + _rIndex); in removeByIndex()
1634 …DBG_ASSERT(m_aChildren.size() == m_aChildNames.size(), "SAL_CALL SbaXFormAdapter::removeByIndex : … in removeByIndex()
1635 m_aChildren.erase(m_aChildren.begin() + _rIndex); in removeByIndex()
1659 if ( ( _rIndex < 0 ) || ( (size_t)_rIndex >= m_aChildren.size() ) ) in replaceByIndex()
1691 Reference< ::com::sun::star::form::XFormComponent > xOld = *(m_aChildren.begin() + _rIndex); in replaceByIndex()
1693 …DBG_ASSERT(m_aChildren.size() == m_aChildNames.size(), "SAL_CALL SbaXFormAdapter::replaceByIndex :… in replaceByIndex()
1694 *(m_aChildren.begin() + _rIndex) = xElement; in replaceByIndex()
1722 return m_aChildren.size(); in getCount()
1728 if ( ( _rIndex < 0 ) || ( (size_t)_rIndex >= m_aChildren.size() ) ) in getByIndex()
1731 … Reference< ::com::sun::star::form::XFormComponent > xElement = *(m_aChildren.begin() + _rIndex); in getByIndex()
1761 …< ::com::sun::star::form::XFormComponent > >::iterator aIter = ::std::find_if( m_aChildren.begin(), in propertyChange()
1762 m_aChildren.end(), in propertyChange()
1765 if(aIter != m_aChildren.end()) in propertyChange()
1767 sal_Int32 nPos = aIter - m_aChildren.begin(); in propertyChange()
1782 …< ::com::sun::star::form::XFormComponent > >::iterator aIter = ::std::find_if( m_aChildren.begin(), in disposing()
1783 m_aChildren.end(), in disposing()
1785 if(aIter != m_aChildren.end()) in disposing()
1786 removeByIndex(aIter - m_aChildren.begin()); in disposing()