Lines Matching refs:pE

274 	SvLBoxEntry* pE = rListBox.FirstSelected();  in IMPL_LINK_INLINE_END()  local
275 while( pE ) in IMPL_LINK_INLINE_END()
277 sal_uInt16 nFndPos = (sal_uInt16)rListBox.GetModel()->GetAbsPos( pE ); in IMPL_LINK_INLINE_END()
280 aLnkArr.push_back( static_cast< SvBaseLink* >( pE->GetUserData() ) ); in IMPL_LINK_INLINE_END()
283 pE = rListBox.NextSelected( pE ); in IMPL_LINK_INLINE_END()
309 if( 0 == (pE = rListBox.GetEntry( aPosArr[ 0 ] )) || in IMPL_LINK_INLINE_END()
310 pE->GetUserData() != aLnkArr[ 0 ] ) in IMPL_LINK_INLINE_END()
313 pE = rListBox.First(); in IMPL_LINK_INLINE_END()
314 while( pE ) in IMPL_LINK_INLINE_END()
316 if( pE->GetUserData() == aLnkArr[ 0 ] ) in IMPL_LINK_INLINE_END()
318 pE = rListBox.Next( pE ); in IMPL_LINK_INLINE_END()
321 if( !pE ) in IMPL_LINK_INLINE_END()
322 pE = rListBox.FirstSelected(); in IMPL_LINK_INLINE_END()
325 if( pE ) in IMPL_LINK_INLINE_END()
328 if( pE != pSelEntry ) in IMPL_LINK_INLINE_END()
330 rListBox.Select( pE ); in IMPL_LINK_INLINE_END()
331 rListBox.MakeVisible( pE ); in IMPL_LINK_INLINE_END()
655 SvLBoxEntry * pE = Links().InsertEntryToColumn( aEntry, nPos ); in InsertEntry() local
656 pE->SetUserData( (void*)&rLink ); in InsertEntry()
658 Links().Select(pE); in InsertEntry()
663 SvLBoxEntry* pE = Links().FirstSelected(); in GetSelEntry() local
665 if( pE && LISTBOX_ENTRY_NOTFOUND != in GetSelEntry()
666 ( nPos = (sal_uInt16)Links().GetModel()->GetAbsPos( pE ) ) ) in GetSelEntry()
668 DBG_ASSERT( pE, "wo kommt der leere Eintrag her?" ); in GetSelEntry()
672 return (SvBaseLink*)pE->GetUserData(); in GetSelEntry()