Lines Matching refs:pControls

1427     const Reference< XControl >* pControls = aControlsCopy.getConstArray();  in toggleAutoFields()  local
1437 Reference< XControl > xControl = pControls[--i]; in toggleAutoFields()
1465 Reference< XControl > xControl = pControls[--i]; in toggleAutoFields()
2094 const Reference< XControl >* pControls = m_aControls.getConstArray(); in setContainer() local
2095 const Reference< XControl >* pControlsEnd = pControls + m_aControls.getLength(); in setContainer()
2096 while ( pControls != pControlsEnd ) in setContainer()
2097 implControlRemoved( *pControls++, true ); in setContainer()
2118 Reference< XControl > * pControls = m_aControls.getArray(); in setContainer() local
2127 pControls[j++] = xControl; in setContainer()
2184 Reference< XControl > * pControls = aNewControls.getArray(); in getControls() local
2193 pControls[j++] = xControl; in getControls()
2287 const Reference< XControl >* pControls = m_aControls.getConstArray(); in setLocks() local
2288 const Reference< XControl >* pControlsEnd = pControls + m_aControls.getLength(); in setLocks()
2289 while ( pControls != pControlsEnd ) in setLocks()
2290 setControlLock( *pControls++ ); in setLocks()
2427 const Reference< XControl >* pControls = m_aControls.getConstArray(); in startListening() local
2428 const Reference< XControl >* pControlsEnd = pControls + m_aControls.getLength(); in startListening()
2429 while ( pControls != pControlsEnd ) in startListening()
2430 startControlModifyListening( *pControls++ ); in startListening()
2440 const Reference< XControl >* pControls = m_aControls.getConstArray(); in stopListening() local
2441 const Reference< XControl >* pControlsEnd = pControls + m_aControls.getLength(); in stopListening()
2442 while ( pControls != pControlsEnd ) in stopListening()
2443 stopControlModifyListening( *pControls++ ); in stopListening()
2453 Reference< XControl >* pControls = _rControls.getArray(); in findControl() local
2455 for ( sal_Int32 i = 0, nCount = _rControls.getLength(); i < nCount; ++i, ++pControls ) in findControl()
2457 if ( pControls->is() ) in findControl()
2459 xModel = (*pControls)->getModel(); in findControl()
2462 Reference< XControl > xControl( *pControls ); in findControl()
2466 *pControls = Reference< XControl >(); in findControl()
2585 const Reference< XControl >* pControls = m_aControls.getConstArray(); in removeControl() local
2586 const Reference< XControl >* pControlsEnd = pControls + m_aControls.getLength(); in removeControl()
2587 while ( pControls != pControlsEnd ) in removeControl()
2589 if ( xControl.get() == (*pControls++).get() ) in removeControl()
2591 ::comphelper::removeElementAt( m_aControls, pControls - m_aControls.getConstArray() - 1 ); in removeControl()
2765 const Reference< XControl >* pControls = m_aControls.getConstArray(); in removeBoundFieldListener() local
2766 const Reference< XControl >* pControlsEnd = pControls + m_aControls.getLength(); in removeBoundFieldListener()
2767 while ( pControls != pControlsEnd ) in removeBoundFieldListener()
2769 Reference< XPropertySet > xProp( *pControls++, UNO_QUERY ); in removeBoundFieldListener()
2968 const Reference< XControl >* pControls = m_aControls.getConstArray(); in isInList() local
2971 for ( sal_uInt32 n = 0; n < nCtrls && xPeer.is(); ++n, ++pControls ) in isInList()
2973 if ( pControls->is() ) in isInList()
2975 Reference< XVclWindowPeer > xCtrlPeer( (*pControls)->getPeer(), UNO_QUERY); in isInList()
2977 return *pControls; in isInList()
3305 const Reference< XControl >* pControls = aControlsCopy.getConstArray(); in startFiltering() local
3319 Reference< XControl > xControl = pControls[--i]; in startFiltering()
3441 const Reference< XControl > * pControls = aControlsCopy.getConstArray(); in stopFiltering() local
3450 Reference< XControl > xControl = pControls[--i]; in stopFiltering()
3645 const Reference< XControl >* pControls = aControls.getConstArray(); in locateControl() local
3648 for ( ; pControls != pControlsEnd; ++pControls ) in locateControl()
3650 OSL_ENSURE( pControls->is(), "FormController::locateControl: NULL-control?" ); in locateControl()
3651 if ( pControls->is() ) in locateControl()
3653 if ( ( *pControls)->getModel() == _rxModel ) in locateControl()
3654 return *pControls; in locateControl()