Lines Matching refs:rStr

111 void Edit::SetText( OUString const& rStr )  in SetText()  argument
116 getImpl()->mxEdit->setText( rStr ); in SetText()
118 GetEdit ()->SetText (rStr); in SetText()
337 sal_uInt16 InsertEntry( OUString const& rStr, sal_uInt16 nPos ) in InsertEntry() argument
341 mxComboBox->addItem( rtl::OUString( rStr ), nPos ); in InsertEntry()
350 sal_uInt16 GetEntryPos( String const& rStr ) const in GetEntryPos()
353 rtl::OUString rKey( rStr ); in GetEntryPos()
435 sal_uInt16 ComboBox::InsertEntry( String const& rStr, sal_uInt16 nPos ) in InsertEntry() argument
437 return getImpl()->InsertEntry( rStr, nPos ); in InsertEntry()
440 void ComboBox::RemoveEntry( String const& rStr ) in RemoveEntry() argument
442 getImpl()->RemoveEntry( GetEntryPos( rStr ) ); in RemoveEntry()
457 sal_uInt16 ComboBox::GetEntryPos( String const& rStr ) const in GetEntryPos()
459 return getImpl()->GetEntryPos( rStr ); in GetEntryPos()
512 sal_uInt16 InsertEntry (String const& rStr, sal_uInt16 nPos) in InsertEntry() argument
516 mxListBox->addItem( rtl::OUString( rStr ), nPos ); in InsertEntry()
525 sal_uInt16 RemoveEntry( String const& rStr, sal_uInt16 nPos) in RemoveEntry() argument
529 mxListBox->addItem( rtl::OUString( rStr ), nPos ); in RemoveEntry()
533 sal_uInt16 GetEntryPos( String const& rStr ) const in GetEntryPos()
536 rtl::OUString rKey( rStr ); in GetEntryPos()
661 sal_uInt16 ListBox::InsertEntry (String const& rStr, sal_uInt16 nPos) in InsertEntry() argument
663 return getImpl()->InsertEntry(rStr, nPos); in InsertEntry()
671 void ListBox::RemoveEntry( String const& rStr ) in RemoveEntry() argument
673 return getImpl()->RemoveEntry( GetEntryPos( rStr ) ); in RemoveEntry()
683 sal_uInt16 ListBox::GetEntryPos( String const& rStr ) const in GetEntryPos()
685 return getImpl()->GetEntryPos( rStr ); in GetEntryPos()
707 void ListBox::SelectEntry( String const& rStr, bool bSelect ) in SelectEntry() argument
709 SelectEntryPos( GetEntryPos( rStr ), bSelect ); in SelectEntry()