Lines Matching refs:i

228 			sal_uInt16 i=0;  in UpdateSelection_Impl_Acc()  local
231 aIter != m_aAccessibleChildren.end(); ++aIter,++i) in UpdateSelection_Impl_Acc()
238 sal_Bool bNowSelected = m_pListBoxHelper->IsEntryPosSelected (i); in UpdateSelection_Impl_Acc()
240 m_nCurSelectedPos = i; in UpdateSelection_Impl_Acc()
251 m_nLastSelectedPos = i; in UpdateSelection_Impl_Acc()
257 checkEntrySelected(i,aNewValue,xNewAcc); in UpdateSelection_Impl_Acc()
261 if ( i < nCount ) // here we have to check the if any other listbox entry is selected in UpdateSelection_Impl_Acc()
263 for (; i < nCount && !checkEntrySelected(i,aNewValue,xNewAcc) ;++i ) in UpdateSelection_Impl_Acc()
543 Reference<XAccessible> VCLXAccessibleList::CreateChild (sal_Int32 i) in CreateChild() argument
547 sal_uInt16 nPos = static_cast<sal_uInt16>(i); in CreateChild()
553 xChild = new VCLXAccessibleListItem(m_pListBoxHelper, i, this); in CreateChild()
562 xChild = new VCLXAccessibleListItem(m_pListBoxHelper, i, this); in CreateChild()
572 bNowSelected = m_pListBoxHelper->IsEntryPosSelected ((sal_uInt16)i); in CreateChild()
574 m_nCurSelectedPos = sal_uInt16(i); in CreateChild()
629 Reference<XAccessible> SAL_CALL VCLXAccessibleList::getAccessibleChild (sal_Int32 i) in getAccessibleChild() argument
635 if ( i < 0 || i >= getAccessibleChildCount() ) in getAccessibleChild()
640 if ( i >= static_cast<sal_Int32>(m_aAccessibleChildren.size()) ) in getAccessibleChild()
641 xChild = CreateChild (i); in getAccessibleChild()
644 xChild = m_aAccessibleChildren[i]; in getAccessibleChild()
646 xChild = CreateChild (i); in getAccessibleChild()
713 for ( sal_uInt16 i = m_pListBoxHelper->GetTopEntry(); i < nEndPos; ++i ) in getAccessibleAt() local
715 if ( m_pListBoxHelper->GetBoundingRectangle(i).IsInside( aPos ) ) in getAccessibleAt()
717 xChild = getAccessibleChild(i); in getAccessibleAt()
779 for (sal_uInt16 i = static_cast<sal_uInt16>(nBegin); (i <= static_cast<sal_uInt16>(nEnd)); ++i) in UpdateEntryRange_Impl() local
781 sal_Bool bVisible = ( i >= nTop && i < ( nTop + m_nVisibleLineCount ) ); in UpdateEntryRange_Impl()
783 if ( i < m_aAccessibleChildren.size() ) in UpdateEntryRange_Impl()
784 xHold = m_aAccessibleChildren[i]; in UpdateEntryRange_Impl()
786 xHold = CreateChild(i); in UpdateEntryRange_Impl()
824 sal_uInt16 i=0; in UpdateSelection_Impl() local
827 aIter != m_aAccessibleChildren.end(); ++aIter,++i) in UpdateSelection_Impl()
834 sal_Bool bNowSelected = m_pListBoxHelper->IsEntryPosSelected (i); in UpdateSelection_Impl()
836 m_nCurSelectedPos = i; in UpdateSelection_Impl()
844 m_nLastSelectedPos = i; in UpdateSelection_Impl()
850 checkEntrySelected(i,aNewValue,xNewAcc); in UpdateSelection_Impl()
854 if ( i < nCount ) // here we have to check the if any other listbox entry is selected in UpdateSelection_Impl()
856 for (; i < nCount && !checkEntrySelected(i,aNewValue,xNewAcc) ;++i ) in UpdateSelection_Impl()
955 for ( sal_uInt16 i = 0; i < nCount; ++i ) in selectAllAccessibleChildren() local
956 m_pListBoxHelper->SelectEntryPos( i, sal_True ); in selectAllAccessibleChildren()