Home
last modified time | relevance | path

Searched refs:curveMap (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/utils/
H A Dutils.cpp269 static const LinearEnumMapNode<ArkUI_AnimationCurve, std::string> curveMap[] = { in CurveIntToString() local
284 …auto index = BinarySearchFindIndex(curveMap, ArraySize(curveMap), static_cast<ArkUI_AnimationCurve… in CurveIntToString()
285 return index < 0 ? DOM_ANIMATION_TIMING_FUNCTION_LINEAR : curveMap[index].value; in CurveIntToString()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Danimation_util.cpp487 static const LinearMapNode<RefPtr<Curve>> curveMap[] = { in CreateKeyboardAnimationOption() local
518 … auto index = BinarySearchFindIndex(curveMap, ArraySize(curveMap), curveConfig.curveType_.c_str()); in CreateKeyboardAnimationOption()
519 curve = index < 0 ? nullptr : curveMap[index].value; in CreateKeyboardAnimationOption()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/src/
H A DArkSwiper.ts505 const curveMap = {
521 if (this.value in curveMap) {
522 this.value = curveMap[this.value];
/ohos5.0/foundation/window/window_manager/wmserver/src/
H A Dwindow_manager_service.cpp701 static std::map<std::string, RSAnimationTimingCurve> curveMap = { in CreateKeyboardCurve() local
728 auto iter = curveMap.find(name); in CreateKeyboardCurve()
729 if (iter != curveMap.end()) { in CreateKeyboardCurve()
752 static std::map<std::string, RSAnimationTimingCurve> curveMap = { in CreateCurve() local
776 if (auto iter = curveMap.find(name); iter != curveMap.end()) { in CreateCurve()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/window_scene/scene/
H A Dwindow_scene.cpp28 const std::map<std::string, RefPtr<Curve>> curveMap { variable
293 auto iter = curveMap.find(config.curve_); in BufferAvailableCallback()
294 if (iter != curveMap.end()) { in BufferAvailableCallback()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DarkComponent.js28276 const curveMap = {
28292 if (this.value in curveMap) {
28293 this.value = curveMap[this.value];