/ohos5.0/base/inputmethod/imf/test/unittest/cpp_test/src/ |
H A D | js_util_test.cpp | 53 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 D | panel_listener_impl.cpp | 152 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 D | js_text_input_client_engine.cpp | 916 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 D | js_get_input_method_controller.cpp | 475 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 D | window_manager_config.h | 43 static std::map<std::string, ConfigItem> ReadProperty(const xmlNodePtr& currNode);
|
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/include/ |
H A D | window_scene_config.h | 44 static std::map<std::string, ConfigItem> ReadProperty(const xmlNodePtr& currNode);
|
/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/ |
H A D | ecs_serializer.cpp | 1050 … if (ReadProperty(ec, propertyValueJson, *propertyOffset.property, propertyOffset.offset)) { in ReadComponent() 1063 bool EcsSerializer::ReadProperty( in ReadProperty() function in EcsSerializer 1123 … ReadProperty(ec, jsonIn.array_.at(i), property.metaData.containerMethods->property, ptr); in ReadProperty() 1137 … ReadProperty(ec, element.value, property.metaData.containerMethods->property, ptr); in ReadProperty() 1150 … ReadProperty(ec, jsonIn.array_.at(i), property.metaData.containerMethods->property, ptr); in ReadProperty() 1169 … ReadProperty(ec, element.value, property.metaData.containerMethods->property, ptr); in ReadProperty() 1184 ReadProperty(ec, *subJson, subProperty, offset + subProperty.offset); in ReadProperty()
|
H A D | ecs_serializer.h | 59 …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 D | window_manager_config.cpp | 118 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 D | window_scene_config.cpp | 139 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 D | intf_ecs_serializer.h | 91 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 D | js_util.h | 88 … static bool ReadProperty(napi_env env, napi_value object, const std::string &property, T &value) in ReadProperty() function
|