/foundation/arkui/ace_engine/frameworks/core/components/declaration/svg/ |
H A D | svg_fe_func_declaration.cpp | 40 declaration.SetAmplitude(declaration.ParseDouble(val)); in SetSpecializedValue() 44 declaration.SetExponent(declaration.ParseDouble(val)); in SetSpecializedValue() 48 declaration.SetIntercept(declaration.ParseDouble(val)); in SetSpecializedValue() 52 declaration.SetOffset(declaration.ParseDouble(val)); in SetSpecializedValue() 56 declaration.SetSlope(declaration.ParseDouble(val)); in SetSpecializedValue()
|
H A D | svg_fe_composite_declaration.cpp | 44 declaration.SetK1(declaration.ParseDouble(val)); in SetSpecializedValue() 48 declaration.SetK2(declaration.ParseDouble(val)); in SetSpecializedValue() 52 declaration.SetK3(declaration.ParseDouble(val)); in SetSpecializedValue() 56 declaration.SetK4(declaration.ParseDouble(val)); in SetSpecializedValue()
|
H A D | svg_stop_declaration.cpp | 67 declaration.SetOpacity(declaration.ParseDouble(val)); in SetSpecializedValue() 76 declaration.SetOpacity(declaration.ParseDouble(val)); in SetSpecializedValue()
|
H A D | svg_fe_flood_declaration.cpp | 44 declaration.SetFloodOpacity(declaration.ParseDouble(val)); in SetSpecializedValue()
|
H A D | svg_text_declaration.cpp | 58 declaration.SetRotate(declaration.ParseDouble(val)); in SetSpecializedValue()
|
/foundation/arkui/ace_engine/frameworks/core/components/declaration/text/ |
H A D | text_declaration.cpp | 306 textShadow.SetOffsetX(declaration.ParseDouble(textShadowProps[pos++])); in ParseTextShadow() 307 textShadow.SetOffsetY(declaration.ParseDouble(textShadowProps[pos])); in ParseTextShadow() 312 textShadow.SetOffsetX(declaration.ParseDouble(textShadowProps[pos++])); in ParseTextShadow() 313 textShadow.SetOffsetY(declaration.ParseDouble(textShadowProps[pos++])); in ParseTextShadow() 316 textShadow.SetBlurRadius(declaration.ParseDouble(textShadowProps[pos])); in ParseTextShadow() 324 textShadow.SetOffsetX(declaration.ParseDouble(textShadowProps[pos++])); in ParseTextShadow() 325 textShadow.SetOffsetY(declaration.ParseDouble(textShadowProps[pos])); in ParseTextShadow() 331 textShadow.SetOffsetX(declaration.ParseDouble(textShadowProps[pos++])); in ParseTextShadow() 332 textShadow.SetOffsetY(declaration.ParseDouble(textShadowProps[pos++])); in ParseTextShadow() 333 textShadow.SetBlurRadius(declaration.ParseDouble(textShadowProp in ParseTextShadow() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/svg/parse/ |
H A D | svg_fe_composite.cpp | 127 attr.k1 = SvgAttributesParser::ParseDouble(val); in ParseAndSetSpecializedAttr() 131 attr.k2 = SvgAttributesParser::ParseDouble(val); in ParseAndSetSpecializedAttr() 135 attr.k3 = SvgAttributesParser::ParseDouble(val); in ParseAndSetSpecializedAttr() 139 attr.k4 = SvgAttributesParser::ParseDouble(val); in ParseAndSetSpecializedAttr()
|
H A D | svg_stop.cpp | 65 attribute.gradientColor.SetOpacity(SvgAttributesParser::ParseDouble(val)); in ParseAndSetSpecializedAttr() 74 attribute.gradientColor.SetOpacity(SvgAttributesParser::ParseDouble(val)); in ParseAndSetSpecializedAttr()
|
H A D | svg_fe_flood.cpp | 59 attr.floodOpacity = SvgAttributesParser::ParseDouble(val); in ParseAndSetSpecializedAttr()
|
H A D | svg_attributes_parser.h | 37 static double ParseDouble(const std::string& value);
|
H A D | svg_attributes_parser.cpp | 266 double SvgAttributesParser::ParseDouble(const std::string& value) in ParseDouble() function in OHOS::Ace::NG::SvgAttributesParser
|
/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | animation_util.cpp | 171 util.AddAnimatable<float>(util.ParseDouble(value), time, AnimatableType::PROPERTY_OPACITY); in KeyframesAddKeyFrame() 273 util.ParseDouble(value), time, AnimatableType::PROPERTY_BORDER_LEFT_WIDTH); in KeyframesAddKeyFrame() 278 util.ParseDouble(value), time, AnimatableType::PROPERTY_BORDER_RIGHT_WIDTH); in KeyframesAddKeyFrame() 283 util.ParseDouble(value), time, AnimatableType::PROPERTY_BORDER_TOP_WIDTH); in KeyframesAddKeyFrame() 288 util.ParseDouble(value), time, AnimatableType::PROPERTY_BORDER_BOTTOM_WIDTH); in KeyframesAddKeyFrame() 292 auto borderWidth = util.ParseDouble(value); in KeyframesAddKeyFrame() 300 auto radius = util.ParseDouble(value); in KeyframesAddKeyFrame() 308 auto radius = util.ParseDouble(value); in KeyframesAddKeyFrame() 313 auto radius = util.ParseDouble(value); in KeyframesAddKeyFrame() 318 auto radius = util.ParseDouble(valu in KeyframesAddKeyFrame() 555 double AnimationUtil::ParseDouble(const std::string& value) const ParseDouble() function in OHOS::Ace::AnimationUtil [all...] |
H A D | animation_util.h | 64 double ParseDouble(const std::string& value) const;
|
/foundation/ability/ability_base/test/fuzztest/arraywrapperthird_fuzzer/ |
H A D | arraywrapperthird_fuzzer.cpp | 45 array->ParseDouble(values, longSize); in DoSomethingInterestingWithMyAPI()
|
/foundation/multimodalinput/input/frameworks/napi/input_device/src/ |
H A D | js_input_device_context.cpp | 677 if (!JsUtil::ParseDouble(env, argv[0], topLeftX)) { in SetVKeyboardArea() 678 MMI_HILOGE("ParseDouble failed. property name: topLeftX"); in SetVKeyboardArea() 683 if (!JsUtil::ParseDouble(env, argv[1], topLeftY)) { in SetVKeyboardArea() 684 MMI_HILOGE("ParseDouble failed. property name: topLeftY"); in SetVKeyboardArea() 689 if (!JsUtil::ParseDouble(env, argv[2], bottomRightX)) { in SetVKeyboardArea() 690 MMI_HILOGE("ParseDouble failed. property name: bottomRightX"); in SetVKeyboardArea() 695 if (!JsUtil::ParseDouble(env, argv[3], bottomRightY)) { in SetVKeyboardArea() 696 MMI_HILOGE("ParseDouble failed. property name: bottomRightY"); in SetVKeyboardArea() 780 if (!JsUtil::ParseDouble(env, resLocX, locX)) { in ParseBMSArray() 781 MMI_HILOGE("ParseBMSArray ParseDouble faile in ParseBMSArray() [all...] |
H A D | js_util.cpp | 230 bool JsUtil::ParseDouble(napi_env env, napi_value value, double& result) in ParseDouble() function in OHOS::MMI::JsUtil 233 MMI_HILOGE("ParseDouble type not number"); in ParseDouble() 238 MMI_HILOGE("ParseDouble cannot get value double"); in ParseDouble()
|
/foundation/ability/ability_base/interfaces/kits/native/want/include/ |
H A D | array_wrapper.h | 93 static sptr<IArray> ParseDouble(const std::string &values, long size);
|
/foundation/multimodalinput/input/frameworks/napi/input_device/include/ |
H A D | js_util.h | 80 static bool ParseDouble(napi_env env, napi_value value, double& result);
|
/foundation/ability/ability_base/interfaces/kits/native/want/src/ |
H A D | array_wrapper.cpp | 218 sptr<IArray> Array::ParseDouble(const std::string &values, long size) in ParseDouble() function in OHOS::AAFwk::Array 296 return ParseDouble(values, size); in Parse()
|
/foundation/arkui/ace_engine/interfaces/napi/kits/animator/ |
H A D | js_animator.cpp | 69 static void ParseDouble(napi_env env, napi_value propertyNapi, double& property) in ParseDouble() function 200 ParseDouble(env, beginNapi, begin); in ParseAnimatorOption() 201 ParseDouble(env, endNapi, end); in ParseAnimatorOption()
|
/foundation/barrierfree/accessibility/interfaces/innerkits/common/include/ |
H A D | accessibility_utils.h | 47 bool ParseDouble(napi_env env, double& param, napi_value args);
|
/foundation/arkui/ace_engine/frameworks/core/components/declaration/common/ |
H A D | declaration.h | 540 double ParseDouble(const std::string& value) const;
|
H A D | declaration.cpp | 1300 opacityStyle.opacity = declaration.ParseDouble(value); 3217 double Declaration::ParseDouble(const std::string& value) const
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_node.h | 419 double ParseDouble(const std::string& value) const;
|
/foundation/barrierfree/accessibility/interfaces/kits/napi/accessibility_config/src/ |
H A D | napi_accessibility_config.cpp | 684 ret = ParseDouble(env, doubleTemp, parameters[PARAM0]); in SetConfigParseData()
|