/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | chain_animation.cpp | 29 … int32_t index, float space, float maxSpace, float minSpace, RefPtr<SpringProperty> springProperty) in ChainAnimationNode() argument 30 : springProperty_(std::move(springProperty)), index_(index), space_(space), maxSpace_(maxSpace), in ChainAnimationNode() 69 ChainAnimation::ChainAnimation(float space, float maxSpace, float minSpace, RefPtr<SpringProperty> … in ChainAnimation() argument 70 : springProperty_(springProperty), space_(space), maxSpace_(maxSpace), minSpace_(minSpace) in ChainAnimation() 73 …nodes_.emplace(i, AceType::MakeRefPtr<ChainAnimationNode>(i, space, maxSpace, minSpace, springProp… in ChainAnimation() 74 …nodes_.emplace(-i, AceType::MakeRefPtr<ChainAnimationNode>(-i, space, maxSpace, minSpace, springPr… in ChainAnimation() 212 void ChainAnimation::SetSpace(float space, float maxSpace, float minSpace) in SetSpace() argument 215 maxSpace_ = maxSpace; in SetSpace() 218 nodes_[i]->SetSpace(space, maxSpace, minSpace); in SetSpace() 219 nodes_[-i]->SetSpace(space, maxSpace, minSpace); in SetSpace()
|
H A D | chain_animation.h | 39 …int32_t index, float space, float maxSpace, float minSpace, RefPtr<SpringProperty> springProperty); 48 void SetSpace(float space, float maxSpace, float minSpace) in SetSpace() argument 51 maxSpace_ = maxSpace; in SetSpace() 71 …ChainAnimation(float space, float maxSpace, float minSpace, RefPtr<SpringProperty> springProperty); 104 void SetSpace(float space, float maxSpace, float minSpace);
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/list/ |
H A D | list_attr_test_ng.cpp | 1534 constexpr float maxSpace = 2.f; variable 1539 .maxSpace = Dimension(maxSpace), 1587 constexpr float maxSpace = 10.f; variable 1592 .maxSpace = Dimension(maxSpace), 1612 EXPECT_FLOAT_EQ(chainAnimation->maxSpace_, maxSpace); 1627 EXPECT_FLOAT_EQ(chainAnimation->maxSpace_, maxSpace); 1640 constexpr float maxSpace = 10.f; variable 1645 .maxSpace = Dimension(maxSpace),
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-container-list-sys.md | 53 | maxSpace | [Length](ts-types.md#length) | 是 | 设置链式联动动效最大间距。 …
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | list_modifier.cpp | 331 options.maxSpace = CalcDimension( in SetChainAnimationOptions() 332 …chainAnimationOptions->maxSpace, static_cast<OHOS::Ace::DimensionUnit>(chainAnimationOptions->maxS… in SetChainAnimationOptions() 349 .maxSpace = listTheme->GetChainMaxSpace(), in ResetChainAnimationOptions()
|
H A D | node_list_modifier.cpp | 473 options.maxSpace = CalcDimension( in SetChainAnimationOptions() 474 …chainAnimationOptions->maxSpace, static_cast<OHOS::Ace::DimensionUnit>(chainAnimationOptions->maxS… in SetChainAnimationOptions() 491 .maxSpace = listTheme->GetChainMaxSpace(), in ResetChainAnimationOptions()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/list/ |
H A D | list_properties.h | 106 CalcDimension maxSpace; member
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_pattern.cpp | 2036 float maxSpace = chainAnimationOptions_.value().maxSpace.ConvertToPx(); in SetChainAnimation() local 2040 maxSpace = LessNotEqual(maxSpace, space) ? space : maxSpace; in SetChainAnimation() 2043 … chainAnimation_ = AceType::MakeRefPtr<ChainAnimation>(space, maxSpace, minSpace, springProperty_); in SetChainAnimation() 2058 auto maxSpace = space * DEFAULT_MAX_SPACE_SCALE; in SetChainAnimation() local 2059 … chainAnimation_ = AceType::MakeRefPtr<ChainAnimation>(space, maxSpace, minSpace, springProperty_); in SetChainAnimation() 2075 float maxSpace = options.maxSpace.ConvertToPx(); in SetChainAnimationOptions() local 2079 maxSpace = LessNotEqual(maxSpace, space) ? space : maxSpace; in SetChainAnimationOptions() 2080 chainAnimation_->SetSpace(space, maxSpace, minSpace); in SetChainAnimationOptions()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/src/ |
H A D | ArkList.ts | 120 this.value?.maxSpace!, this.value?.conductivity, this.value?.intensity, 126 ….stageValue.minSpace === this.value.minSpace && this.stageValue.maxSpace === this.value.maxSpace &&
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-container-list-sys.md | 53 | maxSpace | [Length](ts-types.md#length) | Yes | Maximum spacing between the cha…
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_list_bridge.cpp | 765 CalcDimension maxSpace; in SetChainAnimationOptions() local 778 maxSpace = listTheme->GetChainMaxSpace(); in SetChainAnimationOptions() 791 ArkTSUtils::ParseJsDimension(vm, maxSpaceArgs, maxSpace, DimensionUnit::VP); in SetChainAnimationOptions() 813 chainAnimationOptions.maxSpace = maxSpace.Value(); in SetChainAnimationOptions() 814 chainAnimationOptions.maxSpaceUnits = static_cast<int32_t>(maxSpace.Unit()); in SetChainAnimationOptions()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_list.cpp | 311 .maxSpace = listTheme->GetChainMaxSpace(), in SetChainAnimationOptions() 320 ParseJsDimensionVp(jsObj->GetProperty("maxSpace"), options.maxSpace); in SetChainAnimationOptions()
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-beta1/ |
H A D | js-apidiff-arkui.md | 289 |新增|NA|模块名: list<br>类名: ChainAnimationOptions<br>方法 or 属性:maxSpace: Length;|list.d.ts|
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-beta2/ |
H A D | js-apidiff-arkui.md | 169 …有变化|类名:ChainAnimationOptions;<br>方法or属性:maxSpace: Length;<br>旧版本信息:|类名:ChainAnimationOptions;<br>方…
|
/ohos5.0/docs/en/release-notes/api-diff/v4.0-beta1/ |
H A D | js-apidiff-arkui.md | 289 … list<br>Class name: ChainAnimationOptions<br>Method or attribute name: maxSpace: Length;|list.d.t…
|
/ohos5.0/docs/en/release-notes/api-diff/v4.0-beta2/ |
H A D | js-apidiff-arkui.md | 169 … attribute name: maxSpace: Length;<br>Old version information: |Class name: ChainAnimationOptions;…
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/ |
H A D | arkoala_api.h | 427 ArkUI_Float32 maxSpace; member
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | arkComponent.js | 26870 _b === void 0 ? void 0 : _b.maxSpace, (_c = this.value) === null || 26879 ….stageValue.minSpace === this.value.minSpace && this.stageValue.maxSpace === this.value.maxSpace &&
|