/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/ |
H A D | intf_attach.h | 105 BASE_NS::vector<IObject::Ptr> GetAttachments() const in GetAttachments() function in IAttach 107 return GetAttachments({}, false); in GetAttachments() 118 virtual BASE_NS::vector<IObject::Ptr> GetAttachments(const BASE_NS::vector<TypeId>& uids, bool strict) const = 0; 124 BASE_NS::vector<typename T::Ptr> GetAttachments() const in GetAttachments() function in IAttach 126 return PtrArrayCast<T>(GetAttachments({ T::UID }, false)); in GetAttachments()
|
H A D | intf_attachment_container.h | 93 * @brief See IAttach::GetAttachments() 95 BASE_NS::vector<IObject::Ptr> GetAttachments() in GetAttachments() function in IAttachmentContainer 97 return GetAttachments({}, false); in GetAttachments() 100 BASE_NS::vector<typename T::Ptr> GetAttachments() in GetAttachments() function in IAttachmentContainer 102 return PtrArrayCast<T>(GetAttachments({}, false)); in GetAttachments() 105 * @brief See IAttach::GetAttachments() 107 virtual BASE_NS::vector<IObject::Ptr> GetAttachments(const BASE_NS::vector<TypeId>& uids, bool strict) = 0;
|
/foundation/graphic/graphic_3d/lume/metaobject/src/ |
H A D | object.cpp | 68 BASE_NS::vector<IObject::Ptr> Object::GetAttachments(const BASE_NS::vector<TypeId>& uids, bool strict) const in GetAttachments() function in Internal::Object 71 return attachments_->GetAttachments(uids, strict); in GetAttachments()
|
H A D | object.h | 53 BASE_NS::vector<IObject::Ptr> GetAttachments(const BASE_NS::vector<TypeId>& uids, bool strict) const override;
|
H A D | attachment_container.h | 65 BASE_NS::vector<IObject::Ptr> GetAttachments(const BASE_NS::vector<TypeId>& uids, bool strict) override;
|
H A D | attachment_container.cpp | 184 BASE_NS::vector<IObject::Ptr> AttachmentContainer::GetAttachments(const BASE_NS::vector<TypeId>& uids, bool strict) in GetAttachments() function in AttachmentContainer
|
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/api/internal/ |
H A D | object_api.h | 436 BASE_NS::vector<META_NS::IObject::Ptr> GetAttachments(const BASE_NS::vector<TypeId>& uids = {}, bool strict = false) in GetAttachments() function in Object 438 return META_API_CACHED_INTERFACE(Attach)->GetAttachments(uids, strict); 444 BASE_NS::vector<typename T::Ptr> GetAttachments() const in GetAttachments() function in Object 446 return META_API_CACHED_INTERFACE(Attach)->GetAttachments<T>(); in GetAttachments()
|
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/interface/ |
H A D | intf_ecs_object.h | 76 virtual BASE_NS::vector<CORE_NS::Entity> GetAttachments() = 0;
|
/foundation/graphic/graphic_3d/lume/metaobject/test/src/ |
H A D | test_utils.h | 212 return IsEqual(a->GetAttachments(), b->GetAttachments()); in IsEqual()
|
/foundation/graphic/graphic_3d/lume/metaobject/test/src/base/ |
H A D | CaptureTest.cpp | 260 EXPECT_EQ(interface_cast<IAttach>(obj)->GetAttachments().size(), 1); in HWTEST_F()
|
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/ |
H A D | node_impl.cpp | 335 BASE_NS::vector<CORE_NS::Entity> NodeImpl::GetAttachments() in GetAttachments() function in NodeImpl 338 return ecsObject_->GetAttachments(); in GetAttachments() 560 if (attach->GetAttachments({}, false).size() > 0) { in ShouldExport() 715 for (auto& attachment : ecsObject_->GetAttachments()) { in CompleteInitialization() 1221 auto attachments = ecsObject_->GetAttachments(); in ReleaseEntityOwnership()
|
H A D | ecs_object.cpp | 256 virtual BASE_NS::vector<CORE_NS::Entity> GetAttachments() override
|
H A D | node_impl.h | 154 BASE_NS::vector<CORE_NS::Entity> GetAttachments() override;
|
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/ext/ |
H A D | object.h | 486 BASE_NS::vector<IObject::Ptr> GetAttachments(const BASE_NS::vector<TypeId>& uids, bool strict) const override 488 return META_EXT_CALL_BASE(IAttach, GetAttachments(uids, strict));
|
/foundation/graphic/graphic_3d/lume/metaobject/test/src/interface/ |
H A D | IntfObjectHierarchyObserverTest.cpp | 562 EXPECT_EQ(i->GetAttachments().size(), 1); in HWTEST_F() 568 EXPECT_EQ(obj->GetAttachments().size(), 0); in HWTEST_F()
|