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()
456 sal_uInt16 ComboBox::GetEntryPos( String const& rStr ) const in GetEntryPos()
458 return getImpl().GetEntryPos( rStr ); in GetEntryPos()
520 sal_uInt16 InsertEntry (String const& rStr, sal_uInt16 nPos) in InsertEntry() argument
524 mxListBox->addItem( rtl::OUString( rStr ), nPos ); in InsertEntry()
533 sal_uInt16 RemoveEntry( String const& rStr, sal_uInt16 nPos) in RemoveEntry() argument
537 mxListBox->addItem( rtl::OUString( rStr ), nPos ); in RemoveEntry()
541 sal_uInt16 GetEntryPos( String const& rStr ) const in GetEntryPos()
544 rtl::OUString rKey( rStr ); in GetEntryPos()
669 sal_uInt16 ListBox::InsertEntry (String const& rStr, sal_uInt16 nPos) in InsertEntry() argument
671 return getImpl().InsertEntry(rStr, nPos); in InsertEntry()
679 void ListBox::RemoveEntry( String const& rStr ) in RemoveEntry() argument
681 return getImpl().RemoveEntry( GetEntryPos( rStr ) ); in RemoveEntry()
690 sal_uInt16 ListBox::GetEntryPos( String const& rStr ) const in GetEntryPos()
692 return getImpl().GetEntryPos( rStr ); in GetEntryPos()
714 void ListBox::SelectEntry( String const& rStr, bool bSelect ) in SelectEntry() argument
716 SelectEntryPos( GetEntryPos( rStr ), bSelect ); in SelectEntry()