Lines Matching refs:ConstPtr
61 IContainer::ConstPtr Metadata::GetPropertyContainer() const
170 BASE_NS::vector<IProperty::ConstPtr> Metadata::GetAllProperties() const
172 return GetAllImpl<BASE_NS::vector<IProperty::ConstPtr>>(properties_->GetAll<IProperty>());
180 BASE_NS::vector<IFunction::ConstPtr> Metadata::GetAllFunctions() const
182 return GetAllImpl<BASE_NS::vector<IFunction::ConstPtr>>(functionMetadata_);
189 BASE_NS::vector<IEvent::ConstPtr> Metadata::GetAllEvents() const
191 return GetAllImpl<BASE_NS::vector<IEvent::ConstPtr>>(eventMetadata_);
198 IProperty::ConstPtr Metadata::GetPropertyByName(BASE_NS::string_view name) const
218 IFunction::ConstPtr Metadata::GetFunctionByName(BASE_NS::string_view name) const
220 return GetByName<IFunction::ConstPtr>(functionMetadata_, name);
226 IEvent::ConstPtr Metadata::GetEventByName(BASE_NS::string_view name) const
228 return GetByName<IEvent::ConstPtr>(eventMetadata_, name);
301 bool MetadataPropertyContainer::IsAncestorOf(const IObject::ConstPtr& object) const