Home
last modified time | relevance | path

Searched refs:ReadProperty (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/base/inputmethod/imf/test/unittest/cpp_test/src/
H A Djs_util_test.cpp53 auto ret = JsUtil::Object::ReadProperty(env, object, "name", nativeObject.name); in Read()
54 ret = ret && JsUtil::Object::ReadProperty(env, object, "id", nativeObject.id); in Read()
55 ret = ret && JsUtil::Object::ReadProperty(env, object, "icon", nativeObject.icon); in Read()
56 ret = ret && JsUtil::Object::ReadProperty(env, object, "iconId", nativeObject.iconId); in Read()
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/inputmethodability/
H A Dpanel_listener_impl.cpp152 auto ret = JsUtil::Object::ReadProperty(env, jsObject, "width", nativeObject.width); in Read()
153 ret = ret && JsUtil::Object::ReadProperty(env, jsObject, "height", nativeObject.height); in Read()
H A Djs_text_input_client_engine.cpp916 auto ret = JsUtil::Object::ReadProperty(env, jsObject, "left", nativeObject.posX_); in Read()
917 ret = ret && JsUtil::Object::ReadProperty(env, jsObject, "top", nativeObject.posY_); in Read()
918 ret = ret && JsUtil::Object::ReadProperty(env, jsObject, "width", nativeObject.width_); in Read()
919 ret = ret && JsUtil::Object::ReadProperty(env, jsObject, "height", nativeObject.height_); in Read()
938 ret = ret && JsUtil::Object::ReadProperty(env, object, "status", status); in Read()
959 auto ret = JsUtil::Object::ReadProperty(env, jsObject, "start", nativeObject.start); in Read()
960 ret = ret && JsUtil::Object::ReadProperty(env, jsObject, "end", nativeObject.end); in Read()
980 … auto ret = JsUtil::Object::ReadProperty(env, jsObject, "inputPattern", nativeObject.inputPattern); in Read()
981 …ret = ret && JsUtil::Object::ReadProperty(env, jsObject, "enterKeyType", nativeObject.enterKeyType… in Read()
983 …&& JsUtil::Object::ReadProperty(env, jsObject, "isTextPreviewSupported", nativeObject.isTextPrevie… in Read()
[all …]
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/inputmethodclient/
H A Djs_get_input_method_controller.cpp475 auto ret = JsUtil::Object::ReadProperty(env, in, "start", out.start); in GetValue()
476 return ret && JsUtil::Object::ReadProperty(env, in, "end", out.end); in GetValue()
521 result = JsUtil::Object::ReadProperty(env, in, "windowId", out.windowId); in GetValue()
596 auto ret = JsUtil::Object::ReadProperty(env, in, "left", out.left); in GetValue()
597 ret = ret && JsUtil::Object::ReadProperty(env, in, "top", out.top); in GetValue()
598 ret = ret && JsUtil::Object::ReadProperty(env, in, "width", out.width); in GetValue()
599 return ret && JsUtil::Object::ReadProperty(env, in, "height", out.height); in GetValue()
654 auto ret = JsUtil::Object::ReadProperty(env, in, "textInputType", out.inputPattern); in GetValue()
655 return ret && JsUtil::Object::ReadProperty(env, in, "enterKeyType", out.enterKeyType); in GetValue()
/ohos5.0/foundation/window/window_manager/wmserver/include/
H A Dwindow_manager_config.h43 static std::map<std::string, ConfigItem> ReadProperty(const xmlNodePtr& currNode);
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/include/
H A Dwindow_scene_config.h44 static std::map<std::string, ConfigItem> ReadProperty(const xmlNodePtr& currNode);
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Decs_serializer.cpp1050 … if (ReadProperty(ec, propertyValueJson, *propertyOffset.property, propertyOffset.offset)) { in ReadComponent()
1063 bool EcsSerializer::ReadProperty( in ReadProperty() function in EcsSerializer
1123ReadProperty(ec, jsonIn.array_.at(i), property.metaData.containerMethods->property, ptr); in ReadProperty()
1137ReadProperty(ec, element.value, property.metaData.containerMethods->property, ptr); in ReadProperty()
1150ReadProperty(ec, jsonIn.array_.at(i), property.metaData.containerMethods->property, ptr); in ReadProperty()
1169ReadProperty(ec, element.value, property.metaData.containerMethods->property, ptr); in ReadProperty()
1184 ReadProperty(ec, *subJson, subProperty, offset + subProperty.offset); in ReadProperty()
H A Decs_serializer.h59 …bool ReadProperty(IEntityCollection& ec, const CORE_NS::json::value& jsonIn, const CORE_NS::Proper… in SCENE_BEGIN_NAMESPACE()
/ohos5.0/foundation/window/window_manager/wmserver/src/
H A Dwindow_manager_config.cpp118 std::map<std::string, ConfigItem> property = ReadProperty(curNodePtr); in ReadConfig()
199 std::map<std::string, XmlConfigBase::ConfigItem> WindowManagerConfig::ReadProperty(const xmlNodePtr… in ReadProperty() function in OHOS::Rosen::WindowManagerConfig
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/
H A Dwindow_scene_config.cpp139 std::map<std::string, ConfigItem> p = ReadProperty(curNodePtr); in ReadConfig()
220 std::map<std::string, XmlConfigBase::ConfigItem> WindowSceneConfig::ReadProperty(const xmlNodePtr& … in ReadProperty() function in OHOS::Rosen::WindowSceneConfig
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/include/scene_plugin/interface/
H A Dintf_ecs_serializer.h91 virtual bool ReadProperty(IEntityCollection& ec, const CORE_NS::json::value& jsonIn, in SCENE_BEGIN_NAMESPACE()
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/common/
H A Djs_util.h88 … static bool ReadProperty(napi_env env, napi_value object, const std::string &property, T &value) in ReadProperty() function