Home
last modified time | relevance | path

Searched refs:blendApplyTypeNum (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_common_bridge.cpp5614 int32_t blendApplyTypeNum = blendApplyTypeArg->Int32Value(vm); in SetBlendMode() local
5615 if (blendApplyTypeNum >= static_cast<int>(OHOS::Ace::BlendApplyType::FAST) && in SetBlendMode()
5616 blendApplyTypeNum <= static_cast<int>(OHOS::Ace::BlendApplyType::OFFSCREEN)) { in SetBlendMode()
5617 blendApplyTypeValue = blendApplyTypeNum; in SetBlendMode()
5649 int32_t blendApplyTypeNum = blendApplyTypeArg->Int32Value(vm); in SetAdvancedBlendMode() local
5650 if (blendApplyTypeNum >= static_cast<int>(OHOS::Ace::BlendApplyType::FAST) && in SetAdvancedBlendMode()
5651 blendApplyTypeNum <= static_cast<int>(OHOS::Ace::BlendApplyType::OFFSCREEN)) { in SetAdvancedBlendMode()
5652 blendApplyTypeValue = blendApplyTypeNum; in SetAdvancedBlendMode()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_view_abstract.cpp7035 auto blendApplyTypeNum = info[1]->ToNumber<int32_t>(); in JsBlendMode() local
7036 if (blendApplyTypeNum >= 0 && blendApplyTypeNum < static_cast<int>(BlendApplyType::MAX)) { in JsBlendMode()
7037 blendApplyType = static_cast<BlendApplyType>(blendApplyTypeNum); in JsBlendMode()
7080 auto blendApplyTypeNum = info[1]->ToNumber<int32_t>(); in JsAdvancedBlendMode() local
7081 if (blendApplyTypeNum >= 0 && blendApplyTypeNum < static_cast<int>(BlendApplyType::MAX)) { in JsAdvancedBlendMode()
7082 blendApplyType = static_cast<BlendApplyType>(blendApplyTypeNum); in JsAdvancedBlendMode()