Home
last modified time | relevance | path

Searched refs:GetPropertyByName (Results 1 - 25 of 40) sorted by relevance

12

/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/
H A Dintf_metadata.h69 virtual IProperty::Ptr GetPropertyByName(BASE_NS::string_view name) = 0;
70 virtual IProperty::ConstPtr GetPropertyByName(BASE_NS::string_view name) const = 0;
132 Property<ValueType> GetPropertyByName(BASE_NS::string_view name) in GetPropertyByName() function in IMetadata
134 return GetPropertyByName(name); in GetPropertyByName()
137 Property<const ValueType> GetPropertyByName(BASE_NS::string_view name) const in GetPropertyByName() function in IMetadata
139 return GetPropertyByName(name); in GetPropertyByName()
144 return GetPropertyByName(name); in GetArrayPropertyByName()
149 return GetPropertyByName(name); in GetArrayPropertyByName()
157 if (auto property = meta->GetPropertyByName<ValueType>(name)) {
184 if (auto property = meta->GetPropertyByName<ValueTyp
[all...]
/foundation/graphic/graphic_3d/lume/metaobject/src/
H A Dobject_context.cpp75 IProperty::Ptr ObjectContext::GetPropertyByName(BASE_NS::string_view name) in GetPropertyByName() function in Internal::ObjectContext
77 return metadata_->GetPropertyByName(name); in GetPropertyByName()
80 IProperty::ConstPtr ObjectContext::GetPropertyByName(BASE_NS::string_view name) const in GetPropertyByName() function in Internal::ObjectContext
82 return metadata_->GetPropertyByName(name); in GetPropertyByName()
H A Dproxy_object.cpp147 if (auto tp = target->GetPropertyByName(p.first)) { in RefreshProperties()
203 if (auto p = m->GetPropertyByName(name)) { in ReflectTargetForProperty()
252 if (auto p = Super::GetPropertyByName(property->GetName())) { in SetPropertyTarget()
278 if (auto tp = target->GetPropertyByName(name)) { in AddProxyProperty()
297 IProperty::Ptr ProxyObject::GetPropertyByName(BASE_NS::string_view name) in GetPropertyByName() function in Internal::ProxyObject
299 auto p = Super::GetPropertyByName(name); in GetPropertyByName()
306 IProperty::ConstPtr ProxyObject::GetPropertyByName(BASE_NS::string_view name) const in GetPropertyByName() function in Internal::ProxyObject
308 return const_cast<ProxyObject*>(this)->GetPropertyByName(name); in GetPropertyByName()
H A Dmeta_object.cpp193 IProperty::Ptr MetaObject::GetPropertyByName(BASE_NS::string_view name) in GetPropertyByName() function in Internal::MetaObject
195 return meta_->GetPropertyByName(name); in GetPropertyByName()
197 IProperty::ConstPtr MetaObject::GetPropertyByName(BASE_NS::string_view name) const in GetPropertyByName() function in Internal::MetaObject
199 return meta_->GetPropertyByName(name); in GetPropertyByName()
H A Dobject_context.h51 IProperty::Ptr GetPropertyByName(BASE_NS::string_view name) override;
52 IProperty::ConstPtr GetPropertyByName(BASE_NS::string_view name) const override;
H A Dproxy_object.h47 IProperty::Ptr GetPropertyByName(BASE_NS::string_view name) override;
48 IProperty::ConstPtr GetPropertyByName(BASE_NS::string_view name) const override;
H A Dmeta_object.h85 IProperty::Ptr GetPropertyByName(BASE_NS::string_view name) override;
86 IProperty::ConstPtr GetPropertyByName(BASE_NS::string_view name) const override;
H A Dmetadata.h65 IProperty::Ptr GetPropertyByName(BASE_NS::string_view name) override;
66 IProperty::ConstPtr GetPropertyByName(BASE_NS::string_view name) const override;
H A Dfunctions.cpp126 if (auto prop = obj->GetPropertyByName(uri_.ReferencedName())) { in Finalize()
H A Dref_uri_util.cpp58 auto prop = meta->GetPropertyByName(propName); in ResolvePropertySegment()
/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Dmaterial_impl.cpp421 auto prop = meta->GetPropertyByName(propName); in BindTextureSlot()
440 GET_HOLDER(info).MarkRelated(info->Sampler(), meta->GetPropertyByName(propName)); in BindTextureSlot()
523 if (auto color = meta->GetPropertyByName(SCENE_NS::IMaterial::MAPPED_INPUTS_COLOR)) { in UpdateInputProperties()
536 if (auto scale = meta->GetPropertyByName(SCENE_NS::IMaterial::MAPPED_INPUTS_NORMAL_SCALE)) { in UpdateInputProperties()
550 if (auto roughness = meta->GetPropertyByName(SCENE_NS::IMaterial::MAPPED_INPUTS_ROUGHNESS)) { in UpdateInputProperties()
558 if (auto metallic = meta->GetPropertyByName(SCENE_NS::IMaterial::MAPPED_INPUTS_METALLIC)) { in UpdateInputProperties()
566 if (auto reflectance = meta->GetPropertyByName(SCENE_NS::IMaterial::MAPPED_INPUTS_REFLECTANCE)) { in UpdateInputProperties()
575 if (auto colorRGB = meta->GetPropertyByName(SCENE_NS::IMaterial::MAPPED_INPUTS_COLOR)) { in UpdateInputProperties()
583 if (auto glossiness = meta->GetPropertyByName(SCENE_NS::IMaterial::MAPPED_INPUTS_GLOSSINESS)) { in UpdateInputProperties()
596 if (auto color = meta->GetPropertyByName(SCENE_N in UpdateInputProperties()
[all...]
H A Dshader_impl.cpp36 auto rcp = data->GetPropertyByName<IntfPtr>("RenderContext");
41 auto urp = data->GetPropertyByName<BASE_NS::string>("uri");
H A Danim_impl.cpp288 animationState_ = meta->GetPropertyByName<uint8_t>(ANIMATION_STATE);
289 animationOptions_ = meta->GetPropertyByName<uint8_t>(ANIMATION_OPTIONS);
290 animationStateTime_ = meta->GetPropertyByName<float>(ANIMATION_STATE_TIME);
291 animationSpeed_ = meta->GetPropertyByName<float>(ANIMATION_SPEED);
292 animationRepeatCount_ = meta->GetPropertyByName<uint32_t>(ANIMATION_REPEATS);
293 animationOrigDuration_ = meta->GetPropertyByName<float>(ANIMATION_DURATION);
H A Dtextureinfo_impl.cpp73 auto sh = params->GetPropertyByName<uintptr_t>("sceneHolder")->GetValue();
76 auto ip = params->GetPropertyByName<META_NS::IProperty::Ptr>("textureInfoArray")->GetValue();
78 slotIndex_ = params->GetPropertyByName<uint32_t>("textureSlotIndex")->GetValue();
H A Dresource_container.cpp44 auto property = GetPropertyByName("Resources");
H A Dcamera_impl.cpp151 if (auto postProcess = meta->GetPropertyByName(CAMERA_POSTPROCESS)) {
194 if (auto postProcess = meta->GetPropertyByName(CAMERA_POSTPROCESS)) {
200 if (auto postProcess = meta->GetPropertyByName(CAMERA_POSTPROCESS)) {
213 if (auto postProcess = meta->GetPropertyByName(CAMERA_POSTPROCESS)) {
/foundation/graphic/graphic_3d/lume/metaobject/test/src/api/
H A DObjectTest.cpp120 auto p1 = o1.Metadata().GetPropertyByName(propName); in HWTEST_F()
121 auto p2 = o2.Metadata().GetPropertyByName(propName); in HWTEST_F()
122 auto p3 = o3.Metadata().GetPropertyByName(propName); in HWTEST_F()
/foundation/graphic/graphic_3d/lume/metaobject/src/loaders/
H A Dcsv_string_resource_loader.cpp48 if (const auto prop = meta->GetPropertyByName<BASE_NS::string>("KeyHeaderColumnName")) { in Create()
51 if (const auto prop = meta->GetPropertyByName<BASE_NS::string>("TargetPropertyName")) { in Create()
54 if (const auto prop = meta->GetPropertyByName<bool>("KeysToLower")) { in Create()
/foundation/graphic/graphic_3d/3d_scene_adapter/src/
H A Dscene_adapter.cpp266 doc->GetPropertyByName<META_NS::SharedPtrIInterface>("EngineQueue")->SetValue(engineThread); in InitEngine()
267 doc->GetPropertyByName<META_NS::SharedPtrIInterface>("AppQueue")->SetValue(appThread); in InitEngine()
268 doc->GetPropertyByName<META_NS::SharedPtrIInterface>("RenderContext")->SetValue(engineInstance_.renderContext_); in InitEngine()
389 auto p1 = doc->GetPropertyByName<IntfPtr>("EngineQueue"); in DeinitRenderThread()
391 auto p2 = doc->GetPropertyByName<IntfPtr>("AppQueue"); in DeinitRenderThread()
393 auto p3 = doc->GetPropertyByName<IntfPtr>("RenderContext"); in DeinitRenderThread()
418 if (auto prp = doc->GetPropertyByName<IntfPtr>("RenderContext")) { in RenderFunction()
/foundation/distributeddatamgr/udmf/interfaces/innerkits/data/
H A Dsystem_defined_record.h31 UDVariant GetPropertyByName(const std::string &property) const;
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/ext/
H A Dobject.h396 IProperty::Ptr GetPropertyByName(BASE_NS::string_view name) override
398 return meta_->GetPropertyByName(name);
400 IProperty::ConstPtr GetPropertyByName(BASE_NS::string_view name) const override
402 return meta_->GetPropertyByName(name);
/foundation/graphic/graphic_3d/kits/js/src/
H A DBaseObjectJS.cpp153 if (auto wrapper = AppMeta->GetPropertyByName<SharedPtrIInterface>("_JSW")) { in FetchJsObj()
167 auto wrapper = AppMeta->GetPropertyByName<SharedPtrIInterface>("_JSW"); in StoreJsObj()
/foundation/graphic/graphic_3d/lume/metaobject/src/engine/
H A Dengine_input_property_manager.cpp97 if (auto p = data.GetPropertyByName(v->GetName())) { in PopulateProperties()
/foundation/graphic/graphic_3d/lume/metaobject/src/model/
H A Dobject_provider_base.cpp110 IProperty::Ptr prop = odata->GetPropertyByName(name); in BindProperties()
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/
H A Dsystem_defined_record_test.cpp98 * @tc.desc: Normal testcase of GetPropertyByName
107 const UDVariant ret = systemDefinedRecord.GetPropertyByName(property); in HWTEST_F()

Completed in 11 milliseconds

12