Lines Matching refs:Name

164     virtual sal_Bool SAL_CALL hasMethod(const OUString& Name) throw( RuntimeException );
165 virtual sal_Bool SAL_CALL hasProperty(const OUString& Name) throw( RuntimeException );
184 virtual void SAL_CALL insertByName( const OUString& Name, const Any& Element ) in insertByName() argument
186 { _xNameContainer->insertByName( Name, Element ); } in insertByName()
188 virtual void SAL_CALL replaceByName( const OUString& Name, const Any& Element ) in replaceByName() argument
190 { _xNameContainer->replaceByName( Name, Element ); } in replaceByName()
192 virtual void SAL_CALL removeByName( const OUString& Name ) in removeByName() argument
194 { _xNameContainer->removeByName( Name ); } in removeByName()
197 virtual Any SAL_CALL getByName( const OUString& Name ) in getByName() argument
199 { return _xNameAccess->getByName( Name ); } in getByName()
204 virtual sal_Bool SAL_CALL hasByName( const OUString& Name ) throw( RuntimeException ) in hasByName() argument
205 { return _xNameAccess->hasByName( Name ); } in hasByName()
506 sal_Bool Invocation_Impl::hasMethod( const OUString& Name ) in hasMethod() argument
510 return _xDirect->hasMethod( Name ); in hasMethod()
512 return _xIntrospectionAccess->hasMethod( Name, MethodConcept::ALL ^ MethodConcept::DANGEROUS ); in hasMethod()
517 sal_Bool Invocation_Impl::hasProperty( const OUString& Name ) in hasProperty() argument
521 return _xDirect->hasProperty( Name ); in hasProperty()
524 && _xIntrospectionAccess->hasProperty( Name, PropertyConcept::ALL ^ PropertyConcept::DANGEROUS ) ) in hasProperty()
528 return _xNameAccess->hasByName( Name ); in hasProperty()
826 rItem.aName = pProps[ i ].Name; in getInfoSequenceImpl()
981 rInfo.aName = rProp.Name; in fillInfoForProperty()