Home
last modified time | relevance | path

Searched refs:originValue (Results 1 - 25 of 27) sorted by relevance

12

/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
44 RSRenderKeyframeAnimation rsRenderKeyframeAnimation(0, 0, originValue); in HWTEST_F()
57 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
58 RSRenderKeyframeAnimation rsRenderKeyframeAnimation(0, 0, originValue); in HWTEST_F()
72 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
75 RSRenderKeyframeAnimation rsRenderKeyframeAnimation(0, 0, originValue); in HWTEST_F()
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
92 RSRenderKeyframeAnimation rsRenderKeyframeAnimation(0, 0, originValue); in HWTEST_F()
122 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
135 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
149 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
164 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
178 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
197 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
[all...]
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/animat/
H A Drs_keyframe_animat_test.cpp43 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
44 RSRenderKeyframeAnimat rsRenderKeyframeAnimat(0, 0, originValue); in HWTEST_F()
58 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
59 RSRenderKeyframeAnimat rsRenderKeyframeAnimat(0, 0, originValue); in HWTEST_F()
72 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
73 RSRenderKeyframeAnimat rsRenderKeyframeAnimat(0, 0, originValue); in HWTEST_F()
103 auto originValue = std::make_shared<RSRenderPropertyBase>(); in HWTEST_F() local
106 RSRenderKeyframeAnimat rsRenderKeyframeAnimat(0, 0, originValue); in HWTEST_F()
108 EXPECT_NE(originValue, nullptr); in HWTEST_F()
112 EXPECT_NE(originValue, nullpt in HWTEST_F()
122 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
136 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
149 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
163 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
178 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
192 auto originValue = std::make_shared<RSRenderPropertyBase>(); HWTEST_F() local
[all...]
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/
H A Dunified_record_test.cpp100 auto originValue = record.GetOriginValue(); in HWTEST_F() local
101 EXPECT_TRUE(std::holds_alternative<std::monostate>(originValue)); in HWTEST_F()
125 auto originValue = record.GetOriginValue(); in HWTEST_F() local
126 EXPECT_TRUE(std::holds_alternative<std::monostate>(originValue)); in HWTEST_F()
151 auto originValue = record.GetOriginValue(); in HWTEST_F() local
152 EXPECT_TRUE(std::holds_alternative<std::string>(originValue)); in HWTEST_F()
153 auto originValueStr = std::get_if<std::string>(&originValue); in HWTEST_F()
/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()
/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()
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/animation/
H A Drs_property_animation.cpp87 void RSPropertyAnimation::SetOriginValue(const std::shared_ptr<RSPropertyBase>& originValue) in SetOriginValue() argument
89 if (!hasOriginValue_ && originValue != nullptr) { in SetOriginValue()
90 originValue_ = originValue->Clone(); in SetOriginValue()
H A Drs_property_animation.h54 void SetOriginValue(const std::shared_ptr<RSPropertyBase>& originValue);
/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()
/foundation/graphic/graphic_2d/rosen/modules/graphics_effect/include/
H A Dge_system_properties.h39 static int ConvertToInt(const char* originValue, int defaultValue);
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/animation/
H A Drs_render_curve_animation.cpp26 const std::shared_ptr<RSRenderPropertyBase>& originValue, const std::shared_ptr<RSRenderPropertyBase>& startValue, in RSRenderCurveAnimation()
27 const std::shared_ptr<RSRenderPropertyBase>& endValue) : RSRenderPropertyAnimation(id, propertyId, originValue), in RSRenderCurveAnimation()
25 RSRenderCurveAnimation(AnimationId id, const PropertyId& propertyId, const std::shared_ptr<RSRenderPropertyBase>& originValue, const std::shared_ptr<RSRenderPropertyBase>& startValue, const std::shared_ptr<RSRenderPropertyBase>& endValue) RSRenderCurveAnimation() argument
H A Drs_render_property_animation.cpp27 const std::shared_ptr<RSRenderPropertyBase>& originValue) : RSRenderAnimation(id), propertyId_(propertyId), in RSRenderPropertyAnimation()
28 originValue_(originValue->Clone()), lastValue_(originValue->Clone()) in RSRenderPropertyAnimation()
26 RSRenderPropertyAnimation(AnimationId id, const PropertyId& propertyId, const std::shared_ptr<RSRenderPropertyBase>& originValue) RSRenderPropertyAnimation() argument
H A Drs_render_interpolating_spring_animation.cpp34 const std::shared_ptr<RSRenderPropertyBase>& originValue, const std::shared_ptr<RSRenderPropertyBase>& startValue, in RSRenderInterpolatingSpringAnimation()
36 : RSRenderPropertyAnimation(id, propertyId, originValue), RSSpringModel<float>(), startValue_(startValue), in RSRenderInterpolatingSpringAnimation()
33 RSRenderInterpolatingSpringAnimation(AnimationId id, const PropertyId& propertyId, const std::shared_ptr<RSRenderPropertyBase>& originValue, const std::shared_ptr<RSRenderPropertyBase>& startValue, const std::shared_ptr<RSRenderPropertyBase>& endValue) RSRenderInterpolatingSpringAnimation() argument
H A Drs_render_keyframe_animation.cpp29 const std::shared_ptr<RSRenderPropertyBase>& originValue) in RSRenderKeyframeAnimation()
30 : RSRenderPropertyAnimation(id, propertyId, originValue) in RSRenderKeyframeAnimation()
28 RSRenderKeyframeAnimation(AnimationId id, const PropertyId& propertyId, const std::shared_ptr<RSRenderPropertyBase>& originValue) RSRenderKeyframeAnimation() argument
H A Drs_render_spring_animation.cpp37 const std::shared_ptr<RSRenderPropertyBase>& originValue, in RSRenderSpringAnimation()
40 : RSRenderPropertyAnimation(id, propertyId, originValue), startValue_(startValue), endValue_(endValue) in RSRenderSpringAnimation()
36 RSRenderSpringAnimation(AnimationId id, const PropertyId& propertyId, const std::shared_ptr<RSRenderPropertyBase>& originValue, const std::shared_ptr<RSRenderPropertyBase>& startValue, const std::shared_ptr<RSRenderPropertyBase>& endValue) RSRenderSpringAnimation() argument
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/animation/
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_curve_animation.h28 const std::shared_ptr<RSRenderPropertyBase>& originValue,
H A Drs_render_spring_animation.h28 const std::shared_ptr<RSRenderPropertyBase>& originValue,
H A Drs_render_property_animation.h44 const std::shared_ptr<RSRenderPropertyBase>& originValue);
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/test/unittest/animation/
H A Drs_render_keyframe_animation_test.cpp47 AnimationId id, const PropertyId& propertyId, const std::shared_ptr<RSRenderPropertyBase>& originValue) in RSRenderKeyframeAnimationMock()
48 : RSRenderKeyframeAnimation(id, propertyId, originValue) in RSRenderKeyframeAnimationMock()
46 RSRenderKeyframeAnimationMock( AnimationId id, const PropertyId& propertyId, const std::shared_ptr<RSRenderPropertyBase>& originValue) RSRenderKeyframeAnimationMock() argument
H A Drs_render_interpolating_spring_animation_test.cpp30 const std::shared_ptr<RSRenderPropertyBase>& originValue, in RSRenderInterpolatingSpringAnimationMock()
33 propertyId, originValue, startValue, endValue) {} in RSRenderInterpolatingSpringAnimationMock()
29 RSRenderInterpolatingSpringAnimationMock(AnimationId id, const PropertyId& propertyId, const std::shared_ptr<RSRenderPropertyBase>& originValue, const std::shared_ptr<RSRenderPropertyBase>& startValue, const std::shared_ptr<RSRenderPropertyBase>& endValue) RSRenderInterpolatingSpringAnimationMock() argument
H A Drs_render_spring_animation_test.cpp48 const std::shared_ptr<RSRenderPropertyBase>& originValue, in RSRenderSpringAnimationMock()
50 : RSRenderSpringAnimation(id, propertyId, originValue, startValue, endValue) in RSRenderSpringAnimationMock()
47 RSRenderSpringAnimationMock(AnimationId id, const PropertyId& propertyId, const std::shared_ptr<RSRenderPropertyBase>& originValue, const std::shared_ptr<RSRenderPropertyBase>& startValue, const std::shared_ptr<RSRenderPropertyBase>& endValue) RSRenderSpringAnimationMock() argument
/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()
/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<PipelineContext>& context) in SvgAnimationMock() argument
65 originValue_ = originValue; in SvgAnimationMock()
/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()

Completed in 13 milliseconds

12