Lines Matching refs:_key
239 … bool impl_getDirectElement_nothrow( const ::rtl::OUString& _key, Any& _out_Element ) const;
252 …bool impl_getResourceTypeAndId_nothrow( const ::rtl::OUString& _key, ResourceTypePtr& _out_reso…
378 …bool OpenOfficeResourceBundle::impl_getResourceTypeAndId_nothrow( const ::rtl::OUString& _key, Res… in impl_getResourceTypeAndId_nothrow() argument
380 sal_Int32 typeSeparatorPos = _key.indexOf( ':' ); in impl_getResourceTypeAndId_nothrow()
385 ::rtl::OUString resourceType = _key.copy( 0, typeSeparatorPos ); in impl_getResourceTypeAndId_nothrow()
393 _out_resourceId = _key.copy( typeSeparatorPos + 1 ).toInt32(); in impl_getResourceTypeAndId_nothrow()
398 …bool OpenOfficeResourceBundle::impl_getDirectElement_nothrow( const ::rtl::OUString& _key, Any& _o… in impl_getDirectElement_nothrow() argument
402 if ( !impl_getResourceTypeAndId_nothrow( _key, resourceType, resourceId ) ) in impl_getDirectElement_nothrow()
414 …Any SAL_CALL OpenOfficeResourceBundle::getDirectElement( const ::rtl::OUString& _key ) throw (Runt… in getDirectElement() argument
419 impl_getDirectElement_nothrow( _key, aElement ); in getDirectElement()
424 …Any SAL_CALL OpenOfficeResourceBundle::getByName( const ::rtl::OUString& _key ) throw (NoSuchEleme… in getByName() argument
429 if ( !impl_getDirectElement_nothrow( _key, aElement ) ) in getByName()
432 aElement = m_xParent->getByName( _key ); in getByName()
451 …::sal_Bool SAL_CALL OpenOfficeResourceBundle::hasByName( const ::rtl::OUString& _key ) throw (Runt… in hasByName() argument
457 if ( !impl_getResourceTypeAndId_nothrow( _key, resourceType, resourceId ) ) in hasByName()