Lines Matching refs:_rSet

103 …sal_Bool implCheckItemType( SfxItemSet& _rSet, const sal_uInt16 _nId, const TypeId _nExpectedItemT…  in implCheckItemType()  argument
107 SfxItemPool* pPool = _rSet.GetPool(); in implCheckItemType()
481 ::rtl::OUString ODbDataSourceAdministrationHelper::getDatasourceType( const SfxItemSet& _rSet ) in getDatasourceType() argument
483 SFX_ITEMSET_GET( _rSet, pConnectURL, SfxStringItem, DSID_CONNECTURL, sal_True ); in getDatasourceType()
485 SFX_ITEMSET_GET(_rSet, pTypeCollection, DbuTypeCollectionItem, DSID_TYPECOLLECTION, sal_True); in getDatasourceType()
492 sal_Bool ODbDataSourceAdministrationHelper::hasAuthentication(const SfxItemSet& _rSet) const in hasAuthentication()
494 return DataSourceMetaData::getAuthentication( getDatasourceType( _rSet ) ) != AuthNone; in hasAuthentication()
984 void ODbDataSourceAdministrationHelper::implTranslateProperty( SfxItemSet& _rSet, sal_Int32 _nId, … in implTranslateProperty() argument
989 if ( implCheckItemType( _rSet, _nId, SfxStringItem::StaticType() ) ) in implTranslateProperty()
993 _rSet.Put(SfxStringItem(_nId, sValue.getStr())); in implTranslateProperty()
1006 if ( implCheckItemType( _rSet, _nId, SfxBoolItem::StaticType() ) ) in implTranslateProperty()
1010 _rSet.Put(SfxBoolItem(_nId, bVal)); in implTranslateProperty()
1012 else if ( implCheckItemType( _rSet, _nId, OptionalBoolItem::StaticType() ) ) in implTranslateProperty()
1023 _rSet.Put( aItem ); in implTranslateProperty()
1036 if ( implCheckItemType( _rSet, _nId, SfxInt32Item::StaticType() ) ) in implTranslateProperty()
1040 _rSet.Put( SfxInt32Item( _nId, nValue ) ); in implTranslateProperty()
1053 if ( implCheckItemType( _rSet, _nId, OStringListItem::StaticType() ) ) in implTranslateProperty()
1068 _rSet.Put(OStringListItem(_nId, aStringList)); in implTranslateProperty()
1086 _rSet.ClearItem(_nId); in implTranslateProperty()