Searched refs:showIndicator (Results 1 – 12 of 12) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/swiper/ |
H A D | swiper_component.cpp | 35 SwiperComponent::SwiperComponent(const std::list<RefPtr<Component>>& children, bool showIndicator) in SwiperComponent() argument 38 SetShowIndicator(showIndicator); in SwiperComponent() 203 void SwiperComponent::SetShowIndicator(bool showIndicator) in SetShowIndicator() argument 205 declaration_->SetShowIndicator(showIndicator); in SetShowIndicator()
|
H A D | swiper_component.h | 58 SwiperComponent(const std::list<RefPtr<Component>>& children, bool showIndicator); 121 void SetShowIndicator(bool showIndicator);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | swiper_model_impl.cpp | 87 void SwiperModelImpl::SetShowIndicator(bool showIndicator) in SetShowIndicator() argument 92 swiper->SetShowIndicator(showIndicator); in SetShowIndicator() 93 if (!showIndicator) { in SetShowIndicator()
|
H A D | swiper_model_impl.h | 39 void SetShowIndicator(bool showIndicator) override;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_swiper_ffi.cpp | 86 void FfiOHOSAceFrameworkSwiperSetIndicator(bool showIndicator) in FfiOHOSAceFrameworkSwiperSetIndicator() argument 88 SwiperModel::GetInstance()->SetShowIndicator(showIndicator); in FfiOHOSAceFrameworkSwiperSetIndicator()
|
H A D | cj_swiper_ffi.h | 33 CJ_EXPORT void FfiOHOSAceFrameworkSwiperSetIndicator(bool showIndicator);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/ |
H A D | swiper_model_ng.h | 50 void SetShowIndicator(bool showIndicator) override; 102 static void SetShowIndicator(FrameNode* frameNode, bool showIndicator);
|
H A D | swiper_model_ng.cpp | 112 void SwiperModelNG::SetShowIndicator(bool showIndicator) in SetShowIndicator() argument 114 ACE_UPDATE_LAYOUT_PROPERTY(SwiperLayoutProperty, ShowIndicator, showIndicator); in SetShowIndicator() 580 void SwiperModelNG::SetShowIndicator(FrameNode* frameNode, bool showIndicator) in SetShowIndicator() argument 582 ACE_UPDATE_NODE_LAYOUT_PROPERTY(SwiperLayoutProperty, ShowIndicator, showIndicator, frameNode); in SetShowIndicator()
|
H A D | swiper_model.h | 116 virtual void SetShowIndicator(bool showIndicator);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/swiper/ |
H A D | swiper_declaration.h | 374 void SetShowIndicator(bool showIndicator) in SetShowIndicator() argument 376 showIndicator_ = showIndicator; in SetShowIndicator()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_swiper.cpp | 728 bool showIndicator = false; in SetIndicator() local 729 ParseJsBool(info[0], showIndicator); in SetIndicator() 730 SwiperModel::GetInstance()->SetShowIndicator(showIndicator); in SetIndicator()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_swiper_modifier.cpp | 771 bool showIndicator = indicator == 1 ? true : false; in SetSwiperIndicator() local 772 SwiperModelNG::SetShowIndicator(frameNode, showIndicator); in SetSwiperIndicator()
|