Lines Matching refs:rMyProp
491 Property& rMyProp = (*m_pProperties)[ nOrigProps - nDeleted ]; in CCRS_PropertySetInfo() local
492 rMyProp.Name = m_aPropertyNameForFetchSize; in CCRS_PropertySetInfo()
493 rMyProp.Type = getCppuType( static_cast< const sal_Int32 * >( 0 ) ); in CCRS_PropertySetInfo()
494 rMyProp.Attributes = PropertyAttribute::BOUND | PropertyAttribute::MAYBEDEFAULT; in CCRS_PropertySetInfo()
501 rMyProp.Handle = m_nFetchSizePropertyHandle; in CCRS_PropertySetInfo()
505 Property& rMyProp = (*m_pProperties)[ nOrigProps - nDeleted + 1 ]; in CCRS_PropertySetInfo() local
506 rMyProp.Name = m_aPropertyNameForFetchDirection; in CCRS_PropertySetInfo()
507 rMyProp.Type = getCppuType( static_cast< const sal_Bool * >( 0 ) ); in CCRS_PropertySetInfo()
508 rMyProp.Attributes = PropertyAttribute::BOUND | PropertyAttribute::MAYBEDEFAULT; in CCRS_PropertySetInfo()
515 m_nFetchDirectionPropertyHandle = rMyProp.Handle; in CCRS_PropertySetInfo()
584 const Property& rMyProp = (*m_pProperties)[nN]; in impl_getPos() local
585 if( rMyProp.Name == rName ) in impl_getPos()
596 const Property& rMyProp = (*m_pProperties)[nN]; in impl_queryProperty() local
597 if( rMyProp.Name == rName ) in impl_queryProperty()
599 rProp.Name = rMyProp.Name; in impl_queryProperty()
600 rProp.Handle = rMyProp.Handle; in impl_queryProperty()
601 rProp.Type = rMyProp.Type; in impl_queryProperty()
602 rProp.Attributes = rMyProp.Attributes; in impl_queryProperty()