Home
last modified time | relevance | path

Searched refs:originValue (Results 1 – 25 of 26) sorted by relevance

12

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/animation/
H A Drs_render_keyframe_animation_test.cpp43 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
57 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
72 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
77 EXPECT_NE(originValue, nullptr); in HWTEST_F()
81 EXPECT_NE(originValue, nullptr); in HWTEST_F()
91 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
122 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
135 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
149 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
164 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
[all …]
/ohos5.0/drivers/hdf_core/framework/model/sensor/driver/common/src/
H A Dsensor_config_controller.c57 uint32_t originValue; in SensorOpsWrite() local
64 mask = GetSensorRegRealValueMask(cfgItem, &originValue, busMask); in SensorOpsWrite()
69 value[SENSOR_SHORT_VALUE_INDEX1] = originValue & mask; in SensorOpsWrite()
78 value[SENSOR_SHORT_VALUE_INDEX2] = originValue & mask; in SensorOpsWrite()
95 uint32_t originValue; in SensorOpsReadCheck() local
108 mask = GetSensorRegRealValueMask(cfgItem, &originValue, busMask); in SensorOpsReadCheck()
109 if ((value & mask) != (originValue & mask)) { in SensorOpsReadCheck()
118 uint32_t originValue; in SensorBitwiseCalculate() local
128 *value |= (originValue & mask); in SensorBitwiseCalculate()
137 originValue = originValue & mask; in SensorBitwiseCalculate()
[all …]
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/src/
H A Dge_system_properties.cpp42 int GESystemProperties::ConvertToInt(const char* originValue, int defaultValue) in ConvertToInt() argument
44 return originValue == nullptr ? defaultValue : std::atoi(originValue); in ConvertToInt()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Dform_value.h66 void SetOriginValue(const std::string& originValue) in SetOriginValue() argument
68 originValue_ = originValue; in SetOriginValue()
69 value_ = originValue; in SetOriginValue()
/ohos5.0/base/web/webview/ohos_adapter/hiviewdfx_adapter/src/
H A Dhitrace_adapter_impl.cpp31 uint64_t ConvertToUint64(const char *originValue, uint64_t defaultValue) in ConvertToUint64() argument
33 return originValue == nullptr ? defaultValue : std::strtoull(originValue, nullptr, BASE); in ConvertToUint64()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/
H A Drs_property_animation.cpp86 void RSPropertyAnimation::SetOriginValue(const std::shared_ptr<RSPropertyBase>& originValue) in SetOriginValue() argument
88 if (!hasOriginValue_ && originValue != nullptr) { in SetOriginValue()
89 originValue_ = originValue->Clone(); in SetOriginValue()
H A Drs_property_animation.h52 void SetOriginValue(const std::shared_ptr<RSPropertyBase>& originValue);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/system/
H A Drs_system_parameters.cpp27 int ConvertToInt(const char *originValue, int defaultValue) in ConvertToInt() argument
29 return originValue == nullptr ? defaultValue : std::atoi(originValue); in ConvertToInt()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_render_property_animation.cpp27 …const std::shared_ptr<RSRenderPropertyBase>& originValue) : RSRenderAnimation(id), propertyId_(pro… in RSRenderPropertyAnimation() argument
28 originValue_(originValue->Clone()), lastValue_(originValue->Clone()) in RSRenderPropertyAnimation()
H A Drs_render_curve_animation.cpp25 …const std::shared_ptr<RSRenderPropertyBase>& originValue, const std::shared_ptr<RSRenderPropertyBa… in RSRenderCurveAnimation() argument
26 …ared_ptr<RSRenderPropertyBase>& endValue) : RSRenderPropertyAnimation(id, propertyId, originValue), in RSRenderCurveAnimation()
H A Drs_render_keyframe_animation.cpp29 const std::shared_ptr<RSRenderPropertyBase>& originValue) in RSRenderKeyframeAnimation() argument
30 : RSRenderPropertyAnimation(id, propertyId, originValue) in RSRenderKeyframeAnimation()
H A Drs_render_interpolating_spring_animation.cpp33 …const std::shared_ptr<RSRenderPropertyBase>& originValue, const std::shared_ptr<RSRenderPropertyBa… in RSRenderInterpolatingSpringAnimation() argument
35 …: RSRenderPropertyAnimation(id, propertyId, originValue), RSSpringModel<float>(), startValue_(star… in RSRenderInterpolatingSpringAnimation()
H A Drs_render_spring_animation.cpp36 const std::shared_ptr<RSRenderPropertyBase>& originValue, in RSRenderSpringAnimation() argument
39 …: RSRenderPropertyAnimation(id, propertyId, originValue), startValue_(startValue), endValue_(endVa… in RSRenderSpringAnimation()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/include/
H A Dge_system_properties.h39 static int ConvertToInt(const char* originValue, int defaultValue);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/
H A Drs_render_interpolating_spring_animation_test.cpp30 const std::shared_ptr<RSRenderPropertyBase>& originValue, in RSRenderInterpolatingSpringAnimationMock() argument
33 propertyId, originValue, startValue, endValue) {} in RSRenderInterpolatingSpringAnimationMock()
H A Drs_render_keyframe_animation_test.cpp47 …ationId id, const PropertyId& propertyId, const std::shared_ptr<RSRenderPropertyBase>& originValue) in RSRenderKeyframeAnimationMock() argument
48 : RSRenderKeyframeAnimation(id, propertyId, originValue) in RSRenderKeyframeAnimationMock()
H A Drs_render_spring_animation_test.cpp48 const std::shared_ptr<RSRenderPropertyBase>& originValue, in RSRenderSpringAnimationMock() argument
50 : RSRenderSpringAnimation(id, propertyId, originValue, startValue, endValue) in RSRenderSpringAnimationMock()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/src/
H A Ddocument_store.cpp190 JsonObject originValue = JsonObject::Parse(valueGotStr, errCode, true); in GetUpDataRePlaceData() local
195 errCode = JsonCommon::Append(originValue, updateValue, isReplace); in GetUpDataRePlaceData()
200 valStr = originValue.Print(); in GetUpDataRePlaceData()
337 JsonObject originValue = JsonObject::Parse(valStr, errCode, true); in GetUpsertRePlaceData() local
342 errCode = JsonCommon::Append(originValue, documentObj, isReplace); in GetUpsertRePlaceData()
347 valStr = originValue.Print(); in GetUpsertRePlaceData()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/
H A Drs_render_curve_animation.h28 const std::shared_ptr<RSRenderPropertyBase>& originValue,
H A Drs_render_interpolating_spring_animation.h28 const std::shared_ptr<RSRenderPropertyBase>& originValue,
H A Drs_render_keyframe_animation.h29 const std::shared_ptr<RSRenderPropertyBase>& originValue);
H A Drs_render_property_animation.h44 const std::shared_ptr<RSRenderPropertyBase>& originValue);
H A Drs_render_spring_animation.h28 const std::shared_ptr<RSRenderPropertyBase>& originValue,
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/test/unittest/svg_animate/
H A Dsvg_animate_test.cpp62 …SvgAnimationMock(T originValue, const RefPtr<SvgAnimate>& svgAnimate, const WeakPtr<PipelineContex… in SvgAnimationMock() argument
65 originValue_ = originValue; in SvgAnimationMock()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_system_properties.cpp47 int ConvertToInt(const char *originValue, int defaultValue) in ConvertToInt() argument
49 return originValue == nullptr ? defaultValue : std::atoi(originValue); in ConvertToInt()

12