Lines Matching refs:nPos

188 	SvListEntry* pEntry2, sal_uLong nPos )  in Broadcast()  argument
195 pView->ModelNotification( nActionId, pEntry1, pEntry2, nPos ); in Broadcast()
201 sal_uLong nPos = aViewList.GetPos( pView ); in InsertView() local
202 if ( nPos == LIST_ENTRY_NOTFOUND ) in InsertView()
211 sal_uLong nPos = aViewList.GetPos( pView ); in RemoveView() local
212 if ( nPos != LIST_ENTRY_NOTFOUND ) in RemoveView()
413 sal_uLong nPos; in Move() local
418 nPos = 0UL; in Move()
423 nPos = pDstEntry->GetChildListPos(); in Move()
424 nPos++; // UNTER (Bildschirm) pDstEntry einfuegen in Move()
426 Move( pSrcEntry, pParent, nPos ); in Move()
442 sal_uLong nPos; in Copy() local
447 nPos = 0UL; in Copy()
452 nPos = pDstEntry->GetChildListPos()+1; in Copy()
454 Copy( pSrcEntry, pParent, nPos ); in Copy()
469 sal_uLong nPos; in InsertTree() local
474 nPos = 0UL; in InsertTree()
479 nPos = pDstEntry->GetChildListPos()+1; in InsertTree()
481 InsertTree( pSrcEntry, pParent, nPos ); in InsertTree()
866 sal_uLong nPos = 0; in GetVisibleCount() local
871 pViewData->nVisPos = nPos; in GetVisibleCount()
872 nPos++; in GetVisibleCount()
876 if( nPos > 10000000 ) in GetVisibleCount()
881 ((SvListView*)pView)->nVisibleCount = nPos; in GetVisibleCount()
883 return nPos; in GetVisibleCount()
1138 sal_uLong nPos = pEntry->GetChildListPos(); in NextSibling() local
1139 nPos++; in NextSibling()
1140 pEntry = (SvListEntry*)(pList->GetObject( nPos )); in NextSibling()
1152 sal_uLong nPos = pEntry->GetChildListPos(); in PrevSibling() local
1153 if ( nPos == 0 ) in PrevSibling()
1155 nPos--; in PrevSibling()
1156 pEntry = (SvListEntry*)(pList->GetObject( nPos )); in PrevSibling()
1242 sal_uLong SvTreeList::Insert( SvListEntry* pEntry,SvListEntry* pParent,sal_uLong nPos ) in Insert() argument
1259 GetInsertionPos( pEntry, pParent, nPos ); in Insert()
1264 pList->Insert( pEntry, nPos ); in Insert()
1266 if( nPos != LIST_APPEND && (nPos != (pList->Count()-1)) ) in Insert()
1275 return nPos; // pEntry->nListPos; in Insert()
1307 sal_uLong nPos = 0; in SetAbsolutePositions() local
1311 pEntry->nAbsPos = nPos; in SetAbsolutePositions()
1312 nPos++; in SetAbsolutePositions()
1617 sal_uLong nPos = 0; in lcl_CheckList() local
1620 DBG_ASSERT(pEntry->GetChildListPos()==nPos,"Wrong ListPos"); in lcl_CheckList()
1622 nPos++; in lcl_CheckList()
1969 SvListEntry* pEntry2, sal_uLong nPos ) in ModelNotification() argument
1991 ModelIsMoving( pEntry1, pEntry2, nPos ); in ModelNotification()
1992 ActionMoving( pEntry1, pEntry2, nPos ); in ModelNotification()
1995 ActionMoved( pEntry1, pEntry2, nPos ); in ModelNotification()