Lines Matching refs:xProp

742     SfxOlePropertyRef xProp;  in GetProperty()  local
745 xProp = aIt->second; in GetProperty()
746 return xProp; in GetProperty()
751 SfxOlePropertyRef xProp = GetProperty( nPropId ); in GetInt32Value() local
753 dynamic_cast< const SfxOleInt32Property* >( xProp.get() ); in GetInt32Value()
761 SfxOlePropertyRef xProp = GetProperty( nPropId ); in GetDoubleValue() local
763 dynamic_cast< const SfxOleDoubleProperty* >( xProp.get() ); in GetDoubleValue()
771 SfxOlePropertyRef xProp = GetProperty( nPropId ); in GetBoolValue() local
773 dynamic_cast< const SfxOleBoolProperty* >( xProp.get() ); in GetBoolValue()
781 SfxOlePropertyRef xProp = GetProperty( nPropId ); in GetStringValue() local
783 dynamic_cast< const SfxOleStringPropertyBase* >( xProp.get() ); in GetStringValue()
791 SfxOlePropertyRef xProp = GetProperty( nPropId ); in GetFileTimeValue() local
793 dynamic_cast< const SfxOleFileTimeProperty* >( xProp.get() ); in GetFileTimeValue()
804 void SfxOleSection::SetProperty( SfxOlePropertyRef xProp ) in SetProperty() argument
806 if( xProp.get() ) in SetProperty()
807 maPropMap[ xProp->GetPropId() ] = xProp; in SetProperty()
845 SfxOlePropertyRef xProp( pThumbnail ); // take ownership in SetThumbnailValue() local
847 SetProperty( xProp ); in SetThumbnailValue()
854 SfxOlePropertyRef xProp( pBlob ); in SetBlobValue() local
856 SetProperty( xProp ); in SetBlobValue()
1032 SfxOlePropertyRef xProp; in LoadProperty() local
1036 xProp.reset( new SfxOleInt32Property( nPropId ) ); in LoadProperty()
1039 xProp.reset( new SfxOleDoubleProperty( nPropId ) ); in LoadProperty()
1042 xProp.reset( new SfxOleBoolProperty( nPropId ) ); in LoadProperty()
1045 xProp.reset( new SfxOleString8Property( nPropId, maCodePageProp ) ); in LoadProperty()
1048 xProp.reset( new SfxOleString16Property( nPropId ) ); in LoadProperty()
1051 xProp.reset( new SfxOleFileTimeProperty( nPropId ) ); in LoadProperty()
1055 if( xProp.get() ) in LoadProperty()
1057 SetError( xProp->Load( rStrm ) ); in LoadProperty()
1058 maPropMap[ nPropId ] = xProp; in LoadProperty()