Lines Matching refs:nPos

191 			sal_uInt16 nPos = (sal_uInt16)(aIter - m_aAccessibleChildren.begin());  in notifyVisibleStates()  local
192 sal_Bool bVisible = ( nPos>=nTopEntry && nPos<( nTopEntry + m_nVisibleLineCount ) ); in notifyVisibleStates()
340 void VCLXAccessibleList::UpdateFocus_Impl_Acc (sal_uInt16 nPos ,bool b_IsDropDownList) in UpdateFocus_Impl_Acc() argument
346 Reference<XAccessible> xChild= CreateChild(nPos); in UpdateFocus_Impl_Acc()
351 m_nCurSelectedPos = nPos; in UpdateFocus_Impl_Acc()
393 sal_uInt16 nPos = m_nCurSelectedPos; //m_pListBoxHelper->GetSelectEntryPos(); in ProcessWindowEvent() local
395 if ( nPos == LISTBOX_ENTRY_NOTFOUND ) in ProcessWindowEvent()
396 nPos = m_pListBoxHelper->GetTopEntry(); in ProcessWindowEvent()
397 if ( nPos != LISTBOX_ENTRY_NOTFOUND ) in ProcessWindowEvent()
398 aNewValue <<= CreateChild(nPos); in ProcessWindowEvent()
468 sal_uInt16 nPos = m_nCurSelectedPos; in ProcessWindowEvent() local
470 if ( nPos == LISTBOX_ENTRY_NOTFOUND ) in ProcessWindowEvent()
471 nPos = m_pListBoxHelper->GetTopEntry(); in ProcessWindowEvent()
472 if ( nPos != LISTBOX_ENTRY_NOTFOUND ) in ProcessWindowEvent()
473 aNewValue <<= CreateChild(nPos); in ProcessWindowEvent()
547 sal_uInt16 nPos = static_cast<sal_uInt16>(i); in CreateChild() local
548 if ( nPos >= m_aAccessibleChildren.size() ) in CreateChild()
550 m_aAccessibleChildren.resize(nPos + 1); in CreateChild()
554 m_aAccessibleChildren[nPos] = xChild; in CreateChild()
558 xChild = m_aAccessibleChildren[nPos]; in CreateChild()
563 m_aAccessibleChildren[nPos] = xChild; in CreateChild()
583 sal_Bool bVisible = ( nPos>=nTopEntry && nPos<( nTopEntry + m_nVisibleLineCount ) ); in CreateChild()