Home
last modified time | relevance | path

Searched refs:ConstructProperty (Results 1 – 19 of 19) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/engine/
H A Dintf_engine_value_manager.h56 virtual IProperty::Ptr ConstructProperty(BASE_NS::string_view name) const = 0;
62 Property<Type> ConstructProperty(BASE_NS::string_view name) in ConstructProperty() function
64 return Property<Type>(ConstructProperty(name)); in ConstructProperty()
69 return ArrayProperty<Type>(ConstructProperty(name)); in ConstructArrayProperty()
H A Dintf_engine_input_property_manager.h31 virtual IProperty::Ptr ConstructProperty(BASE_NS::string_view name) = 0;
40 Property<Type> ConstructProperty(BASE_NS::string_view name) in ConstructProperty() function
42 return Property<Type>(ConstructProperty(name)); in ConstructProperty()
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/property/
H A Dconstruct_property.h55 Property<T> ConstructProperty(IObjectRegistry& obr, BASE_NS::string_view name, const T& value = {},
71 Property<T> ConstructProperty(
74 return ConstructProperty(GetObjectRegistry(), name, value, flags);
78 Property<typename T::TypePtr> ConstructProperty(
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dmaterial_impl.cpp541 … auto s = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_NORMAL_SCALE); in UpdateInputProperties()
609 … auto p = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_INTENSITY); in UpdateInputProperties()
621 … auto p = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_STRENGTH); in UpdateInputProperties()
634 … auto p = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_INTENSITY); in UpdateInputProperties()
647 … auto p = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_ROUGHNESS); in UpdateInputProperties()
660 … auto p = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_NORMAL_SCALE); in UpdateInputProperties()
681 … auto p = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_ROUGHNESS); in UpdateInputProperties()
715 … auto p = META_NS::ConstructProperty<float>(SCENE_NS::IMaterial::MAPPED_INPUTS_STRENGTH); in UpdateInputProperties()
1048 params->AddProperty(META_NS::ConstructProperty<META_NS::IProperty::Ptr>( in SynchronizeInputsFromMetadata()
1050 params->AddProperty(META_NS::ConstructProperty<uint32_t>( in SynchronizeInputsFromMetadata()
[all …]
H A Dresource_container.cpp33 if (auto p = META_NS::ConstructProperty<META_NS::IContainer::Ptr>("Resources")) { in Build()
H A Decs_object.cpp219 prop = META_NS::ConstructProperty<BASE_NS::string>("Name"); in UpdateMetaCache()
234 AddProperty(m->valueManager->ConstructProperty(v->GetName())); in UpdateMetaCache()
H A Dnode_impl.cpp911 …auto p = META_NS::ConstructProperty<uint32_t>(LIFECYCLE_PROPERTY_NAME, 0, META_NS::DEFAULT_PROPERT… in GetLifecycleInfo()
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/loaders/
H A Dcsv_string_resource_loader.cpp117 … item.Metadata().AddProperty(ConstructProperty<BASE_NS::string>(keys->at(i), column.second[i])); in CreateStringResourceObject()
119 strings.Metadata().AddProperty(ConstructProperty<IObject::Ptr>(column.first, item)); in CreateStringResourceObject()
123 object.MetaProperty(ConstructProperty<IObject::Ptr>(options.targetPropertyName, strings)); in CreateStringResourceObject()
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dmeta_object.cpp77 …objectContext_ = ConstructProperty<IObjectContext::Ptr>(context->GetObjectRegistry(), "ObjectConte… in PropertyObjectContext()
92 …objectContext_ = ConstructProperty<IObjectContext::Ptr>(context->GetObjectRegistry(), "ObjectConte… in PropertyObjectContext()
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/engine/
H A Dengine_input_property_manager.h33 IProperty::Ptr ConstructProperty(BASE_NS::string_view name) override; in META_BEGIN_NAMESPACE()
H A Dengine_value_manager.h48 IProperty::Ptr ConstructProperty(BASE_NS::string_view name) const override; in META_BEGIN_NAMESPACE()
H A Dengine_input_property_manager.cpp49 IProperty::Ptr EngineInputPropertyManager::ConstructProperty(BASE_NS::string_view name) in ConstructProperty() function in Internal::EngineInputPropertyManager
H A Dengine_value_manager.cpp233 IProperty::Ptr EngineValueManager::ConstructProperty(BASE_NS::string_view name) const in ConstructProperty() function in Internal::EngineValueManager
/ohos5.0/foundation/graphic/graphic_3d/3d_scene_adapter/src/
H A Dscene_adapter.cpp261 doc->AddProperty(META_NS::ConstructProperty<IntfPtr>("RenderContext", nullptr, flags)); in InitEngine()
262 doc->AddProperty(META_NS::ConstructProperty<IntfPtr>("EngineQueue", nullptr, flags)); in InitEngine()
263 doc->AddProperty(META_NS::ConstructProperty<IntfPtr>("AppQueue", nullptr, flags)); in InitEngine()
/ohos5.0/foundation/graphic/graphic_3d/kits/js/src/
H A DMaterialJS.cpp220 ->AddProperty(META_NS::ConstructProperty<IntfPtr>( in SetColorShader()
269 ->AddProperty(META_NS::ConstructProperty<IntfPtr>( in GetColorShader()
H A DBaseObjectJS.cpp195 wrapper = ConstructProperty<SharedPtrIInterface>( in StoreJsObj()
H A DSceneJS.cpp883 params->AddProperty(META_NS::ConstructProperty<IntfPtr>( in CreateShader()
886 params->AddProperty(META_NS::ConstructProperty<BASE_NS::string>( in CreateShader()
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/ext/
H A Dimplementation_macros.h48 …[] { return ::META_NS::IProperty::Ptr(::META_NS::ConstructProperty<type>(#name, defaultValue, flag…
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/api/internal/
H A Dobject_api.h371 meta->AddProperty(ConstructProperty<PropertyValueType>(propertyName, propertyValue)); in MetaProperty()