Lines Matching refs:nPos

370     int nPos = getVisibleControlIndex();  in selectAll()  local
371 if ( nPos < E_ELEMENT_TYPE_COUNT ) in selectAll()
373 m_pLists[nPos]->SelectAll(sal_True); in selectAll()
390 int nPos = getVisibleControlIndex(); in isSortUp() local
391 if ( nPos < E_ELEMENT_TYPE_COUNT ) in isSortUp()
393 SvLBoxTreeList* pModel = m_pLists[nPos]->GetModel(); in isSortUp()
401 int nPos = getVisibleControlIndex(); in sortDown() local
402 if ( nPos < E_ELEMENT_TYPE_COUNT ) in sortDown()
403 sort(nPos,SortDescending); in sortDown()
408 int nPos = getVisibleControlIndex(); in sortUp() local
409 if ( nPos < E_ELEMENT_TYPE_COUNT ) in sortUp()
410 sort(nPos,SortAscending); in sortUp()
415 int nPos = getVisibleControlIndex(); in getSelectionElementNames() local
416 if ( nPos < E_ELEMENT_TYPE_COUNT ) in getSelectionElementNames()
418 DBTreeListBox& rTree = *m_pLists[nPos]; in getSelectionElementNames()
533 int nPos = getVisibleControlIndex(); in selectElements() local
534 if ( nPos < E_ELEMENT_TYPE_COUNT ) in selectElements()
536 DBTreeListBox& rTree = *m_pLists[nPos]; in selectElements()
551 int nPos = getVisibleControlIndex(); in getQualifiedName() local
554 if ( nPos >= E_ELEMENT_TYPE_COUNT ) in getQualifiedName()
557 OSL_ENSURE(m_pLists[nPos],"Tables tree view is NULL! -> GPF"); in getQualifiedName()
558 DBTreeListBox& rTree = *m_pLists[nPos]; in getQualifiedName()
569 … const OTableTreeListBox& rTreeView = dynamic_cast< const OTableTreeListBox& >( *m_pLists[nPos] ); in getQualifiedName()
588 int nPos = getVisibleControlIndex(); in getElementType() local
589 return static_cast<ElementType>(nPos); in getElementType()
595 int nPos = getVisibleControlIndex(); in getSelectionCount() local
596 if ( nPos < E_ELEMENT_TYPE_COUNT ) in getSelectionCount()
598 DBTreeListBox& rTree = *m_pLists[nPos]; in getSelectionCount()
612 int nPos = getVisibleControlIndex(); in getElementCount() local
613 if ( nPos < E_ELEMENT_TYPE_COUNT ) in getElementCount()
615 nCount = m_pLists[nPos]->GetEntryCount(); in getElementCount()
668 int nPos = getVisibleControlIndex(); in isALeafSelected() local
670 if ( nPos < E_ELEMENT_TYPE_COUNT ) in isALeafSelected()
672 DBTreeListBox& rTree = *m_pLists[nPos]; in isALeafSelected()
686 int nPos = getVisibleControlIndex(); in getEntry() local
687 if ( nPos < E_ELEMENT_TYPE_COUNT ) in getEntry()
688 pReturn = m_pLists[nPos]->GetEntry( _aPosPixel,sal_True ); in getEntry()