Home
last modified time | relevance | path

Searched refs:collectionIndex (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dentity_collection.cpp104 EntityReference EntityCollection::GetEntity(size_t collectionIndex) const in GetEntity()
106 BASE_ASSERT(collectionIndex < entities_.size()); in GetEntity()
107 if (collectionIndex >= entities_.size()) { in GetEntity()
110 return entities_[collectionIndex]; in GetEntity()
H A Decs_serializer.cpp324 const auto collectionIndex = collectionJson->unsigned_; in EntityFromJson() local
325 if (collectionIndex < ec.GetSubCollectionCount()) { in EntityFromJson()
326 collection = ec.GetSubCollection(collectionIndex); in EntityFromJson()
328 CORE_LOG_W("Collection not found: %" PRIu64, collectionIndex); in EntityFromJson()
H A Dentity_collection.h55 CORE_NS::EntityReference GetEntity(size_t collectionIndex) const override; in SCENE_BEGIN_NAMESPACE()
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/interface/
H A Dintf_entity_collection.h67 virtual CORE_NS::EntityReference GetEntity(size_t collectionIndex) const = 0; in SCENE_BEGIN_NAMESPACE()