Home
last modified time | relevance | path

Searched refs:isGloballyAvailable (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/
H A Dintf_object_registry.h83 constexpr CreateInfo() noexcept : instanceId(), isGloballyAvailable(false) {}; in CreateInfo()
84 … constexpr CreateInfo(InstanceId id) noexcept : instanceId(id), isGloballyAvailable(false) {}; in CreateInfo()
85 …r CreateInfo(InstanceId id, bool global) noexcept : instanceId(id), isGloballyAvailable(global) {}; in CreateInfo()
92 bool isGloballyAvailable; member
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dobject_registry.cpp299 if (createInfo.isGloballyAvailable) { in PostCreate()