Lines Matching refs:rToFill
638 sal_uInt16 InsertStringSorted(const String& rEntry, ListBox& rToFill, sal_uInt16 nOffset ) in InsertStringSorted() argument
643 for( ; i < rToFill.GetEntryCount(); i++ ) in InsertStringSorted()
645 if( 0 < rCaseColl.compareString( rToFill.GetEntry(i), rEntry )) in InsertStringSorted()
648 return rToFill.InsertEntry(rEntry, i); in InsertStringSorted()
650 void FillCharStyleListBox(ListBox& rToFill, SwDocShell* pDocSh, sal_Bool bSorted, sal_Bool bWithDef… in FillCharStyleListBox() argument
652 sal_Bool bHasOffset = rToFill.GetEntryCount() > 0; in FillCharStyleListBox()
665 nPos = InsertStringSorted(pBase->GetName(), rToFill, bHasOffset ); in FillCharStyleListBox()
667 nPos = rToFill.InsertEntry(pBase->GetName()); in FillCharStyleListBox()
669 rToFill.SetEntryData( nPos, (void*) (nPoolId)); in FillCharStyleListBox()
681 if(rToFill.GetEntryPos(rName) == LISTBOX_ENTRY_NOTFOUND) in FillCharStyleListBox()
685 nPos = InsertStringSorted(rName, rToFill, bHasOffset ); in FillCharStyleListBox()
687 nPos = rToFill.InsertEntry(rName); in FillCharStyleListBox()
689 rToFill.SetEntryData( nPos, (void*) (nPoolId)); in FillCharStyleListBox()