Lines Matching refs:_nId
103 …sal_Bool implCheckItemType( SfxItemSet& _rSet, const sal_uInt16 _nId, const TypeId _nExpectedItemT… in implCheckItemType() argument
111 const SfxPoolItem& rDefItem = pPool->GetDefaultItem( _nId ); in implCheckItemType()
962 ::rtl::OString ODbDataSourceAdministrationHelper::translatePropertyId( sal_Int32 _nId ) in translatePropertyId() argument
966 MapInt2String::const_iterator aPos = m_aDirectPropTranslator.find( _nId ); in translatePropertyId()
973 MapInt2String::const_iterator indirectPos = m_aIndirectPropTranslator.find( _nId ); in translatePropertyId()
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()
998 += ::rtl::OString( translatePropertyId( _nId ) ) 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()
1014 OptionalBoolItem aItem( _nId ); in implTranslateProperty()
1028 += ::rtl::OString( translatePropertyId( _nId ) ) in implTranslateProperty()
1036 if ( implCheckItemType( _rSet, _nId, SfxInt32Item::StaticType() ) ) in implTranslateProperty()
1040 _rSet.Put( SfxInt32Item( _nId, nValue ) ); in implTranslateProperty()
1045 += ::rtl::OString( translatePropertyId( _nId ) ) in implTranslateProperty()
1053 if ( implCheckItemType( _rSet, _nId, OStringListItem::StaticType() ) ) in implTranslateProperty()
1068 _rSet.Put(OStringListItem(_nId, aStringList)); in implTranslateProperty()
1078 += ::rtl::OString( translatePropertyId( _nId ) ) in implTranslateProperty()
1086 _rSet.ClearItem(_nId); in implTranslateProperty()