Lines Matching refs:pEntry

205 	SvLBoxEntry* pEntry = First();  in ~BasicTreeListBox()  local
206 while ( pEntry ) in ~BasicTreeListBox()
208 delete (BasicEntry*)pEntry->GetUserData(); in ~BasicTreeListBox()
209 pEntry = Next( pEntry ); in ~BasicTreeListBox()
359 SvLBoxEntry* pEntry = FindEntry( pModuleEntry, aName, OBJ_TYPE_METHOD ); in ImpCreateLibSubEntries() local
360 if ( !pEntry ) in ImpCreateLibSubEntries()
361 pEntry = AddEntry( in ImpCreateLibSubEntries()
516 SvLBoxEntry* pEntry = FindEntry( pModuleEntry, aName, OBJ_TYPE_METHOD ); in ImpCreateLibSubSubEntriesInVBAMode() local
517 if ( !pEntry ) in ImpCreateLibSubSubEntriesInVBAMode()
518 pEntry = AddEntry( in ImpCreateLibSubSubEntriesInVBAMode()
537 SvLBoxEntry* pEntry = pParent ? FirstChild( pParent ) : GetEntry( nRootPos ); in ImpFindEntry() local
538 while ( pEntry ) in ImpFindEntry()
540 if ( GetEntryText( pEntry ) == rText ) in ImpFindEntry()
541 return pEntry; in ImpFindEntry()
543 pEntry = pParent ? NextSibling( pEntry ) : GetEntry( ++nRootPos ); in ImpFindEntry()
599 SvLBoxEntry* pEntry = First(); in UpdateEntries() local
600 while ( pEntry ) in UpdateEntries()
602 if ( IsValidEntry( pEntry ) ) in UpdateEntries()
603 pLastValid = pEntry; in UpdateEntries()
606 delete (BasicEntry*)pEntry->GetUserData(); in UpdateEntries()
607 GetModel()->Remove( pEntry ); in UpdateEntries()
609 pEntry = pLastValid ? Next( pLastValid ) : First(); in UpdateEntries()
634 SvLBoxEntry* pEntry = pParent ? FirstChild( pParent ) : GetEntry( nRootPos ); in FindEntry() local
635 while ( pEntry ) in FindEntry()
637 BasicEntry* pBasicEntry = (BasicEntry*)pEntry->GetUserData(); in FindEntry()
639 if ( ( pBasicEntry->GetType() == eType ) && ( GetEntryText( pEntry ) == rText ) ) in FindEntry()
640 return pEntry; in FindEntry()
642 pEntry = pParent ? NextSibling( pEntry ) : GetEntry( ++nRootPos ); in FindEntry()
684 sal_Bool BasicTreeListBox::IsEntryProtected( SvLBoxEntry* pEntry ) in IsEntryProtected() argument
687 if ( pEntry && ( GetModel()->GetDepth( pEntry ) == 1 ) ) in IsEntryProtected()
689 BasicEntryDescriptor aDesc( GetEntryDescriptor( pEntry ) ); in IsEntryProtected()
721 void BasicTreeListBox::SetEntryBitmaps( SvLBoxEntry * pEntry, const Image& rImage, const Image& rIm… in SetEntryBitmaps() argument
723 SetExpandedEntryBmp( pEntry, rImage, BMP_COLOR_NORMAL ); in SetEntryBitmaps()
724 SetCollapsedEntryBmp( pEntry, rImage, BMP_COLOR_NORMAL ); in SetEntryBitmaps()
725 SetExpandedEntryBmp( pEntry, rImageHC, BMP_COLOR_HIGHCONTRAST ); in SetEntryBitmaps()
726 SetCollapsedEntryBmp( pEntry, rImageHC, BMP_COLOR_HIGHCONTRAST ); in SetEntryBitmaps()
851 SvLBoxEntry* pEntry = FindEntry( pCurEntry, aName, eType ); in SetCurrentEntry() local
852 if ( pEntry ) in SetCurrentEntry()
854 pCurEntry = pEntry; in SetCurrentEntry()
858 Expand( pEntry ); in SetCurrentEntry()
859 … SvLBoxEntry* pSubEntry = FindEntry( pEntry, aMethodName, OBJ_TYPE_METHOD ); in SetCurrentEntry()
866 pSubEntry = FirstChild( pEntry ); in SetCurrentEntry()
874 pEntry = FirstChild( pLibEntry ); in SetCurrentEntry()
875 if ( pEntry ) in SetCurrentEntry()
876 pCurEntry = pEntry; in SetCurrentEntry()