Home
last modified time | relevance | path

Searched refs:IsAtBottom (Results 1 – 25 of 49) sorted by relevance

12

/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/scroll/
H A Dscroll_controller_test_ng.cpp333 EXPECT_TRUE(pattern_->IsAtBottom());
423 EXPECT_TRUE(pattern_->IsAtBottom());
518 EXPECT_TRUE(pattern_->IsAtBottom());
613 EXPECT_TRUE(pattern_->IsAtBottom());
702 EXPECT_TRUE(pattern_->IsAtBottom());
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/tabs/
H A Dtabs_common_test_ng.cpp279 EXPECT_FALSE(tabBarPattern_->IsAtBottom());
309 EXPECT_FALSE(tabBarPattern_->IsAtBottom());
338 EXPECT_TRUE(tabBarPattern_->IsAtBottom());
366 EXPECT_TRUE(tabBarPattern_->IsAtBottom());
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/scroll/
H A Dscroll_accessibility_property.cpp45 if (!scrollPattern->IsAtBottom()) { in SetSpecificSupportAction()
H A Dscroll_model_ng.cpp544 if (pattern->IsAtBottom()) { in GetOnScrollEdge()
552 if (pattern->IsAtBottom()) { in GetOnScrollEdge()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/scroll_bar/
H A Dscroll_bar_accessibility_property.cpp58 if (!scrollBarPattern->IsAtBottom()) { in SetSpecificSupportAction()
H A Dscroll_bar_pattern.h131 bool IsAtBottom() const;
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/scrollable/
H A Dmock_scrollable.h31 MOCK_METHOD(bool, IsAtBottom, (), (const, override));
H A Dscrollable_fling_test_ng.cpp144 EXPECT_CALL(*scrollPn, IsAtBottom).WillRepeatedly(Return(false));
590 EXPECT_CALL(*scrollPn, IsAtBottom).WillRepeatedly(Return(false));
938 EXPECT_CALL(*scrollPn, IsAtBottom).WillRepeatedly(Return(false));
1059 EXPECT_CALL(*scrollPn, IsAtBottom).WillRepeatedly(Return(false));
1505 EXPECT_CALL(*scrollPn, IsAtBottom).WillRepeatedly(Return(false));
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/menu/
H A Dmenu_accessibility_property.cpp51 if (!scrollPattern->IsAtBottom()) { in SetSpecificSupportAction()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_accessibility_property.cpp69 if (!(listPattern->IsAtBottom())) { in SetSpecificSupportAction()
H A Dlist_pattern.h130 bool IsAtBottom() const override;
336 (IsAtBottom() || IsAtTop())); in CanOverScroll()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/tabs/
H A Dtab_bar_accessibility_property.cpp86 if (!(pattern->IsAtBottom())) { in SetSpecificSupportAction()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/waterflow/
H A Dwater_flow_accessibility_property.cpp82 if (!(pattern->IsAtBottom())) { in SetSpecificSupportAction()
H A Dwater_flow_pattern.h36 bool IsAtBottom() const override;
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/list/
H A Dlist_scroller_test_ng.cpp166 EXPECT_FALSE(pattern_->IsAtBottom());
195 EXPECT_TRUE(pattern_->IsAtBottom());
746 EXPECT_FALSE(pattern_->IsAtBottom());
777 EXPECT_TRUE(pattern_->IsAtBottom());
1345 EXPECT_TRUE(pattern_->IsAtBottom());
1423 EXPECT_TRUE(pattern_->IsAtBottom());
1522 EXPECT_TRUE(pattern_->IsAtBottom());
1615 EXPECT_TRUE(pattern_->IsAtBottom());
1812 bool isAtBottom = pattern_->IsAtBottom();
1851 bool isAtBottom = pattern_->IsAtBottom();
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_accessibility_property.cpp99 if (!(gridPattern->IsAtBottom())) { in SetSpecificSupportAction()
H A Dgrid_pattern.h174 bool IsAtBottom() const override in IsAtBottom() function
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/waterflow/
H A Dwater_flow_test_ng.cpp933 EXPECT_TRUE(pattern_->IsAtBottom());
1022 EXPECT_TRUE(pattern_->IsAtBottom());
1104 EXPECT_TRUE(pattern_->IsAtBottom());
1197 EXPECT_TRUE(pattern_->IsAtBottom());
1279 EXPECT_TRUE(pattern_->IsAtBottom());
1323 EXPECT_FALSE(pattern_->IsAtBottom());
1330 EXPECT_TRUE(pattern_->IsAtBottom());
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/grid/
H A Dgrid_scroller_test_ng.cpp161 EXPECT_FALSE(pattern_->IsAtBottom());
187 EXPECT_TRUE(pattern_->IsAtBottom());
976 EXPECT_TRUE(pattern_->IsAtBottom());
1045 EXPECT_TRUE(pattern_->IsAtBottom());
1133 EXPECT_TRUE(pattern_->IsAtBottom());
1224 EXPECT_TRUE(pattern_->IsAtBottom());
1313 EXPECT_TRUE(pattern_->IsAtBottom());
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/scrollable/
H A Dscrollable_pattern.h132 virtual bool IsAtBottom() const = 0;
135 return !IsAtBottom(); in IsFadingBottom()
593 bool isScrollable = !(IsAtBottom() && IsAtTop() && !GetAlwaysEnabled()); in SetAnimateCanOverScroll()
H A Dscrollable_controller.cpp164 return pattern->IsAtBottom(); in IsAtEnd()
H A Dscrollable_pattern.cpp792 bool isAtBottom = IsAtBottom(); in HandleEdgeEffect()
1445 … (pattern->IsAtBottom() && GreatOrEqual(pattern->finalPosition_, pattern->GetTotalOffset()))) { in InitCurveOffsetProperty()
1804 if (IsAtBottom()) { in GetOutOfScrollableOffset()
2251 …auto needFlingAtEdge = !(((IsAtTop() && Positive(velocity)) || (IsAtBottom() && Negative(velocity)… in HandleScrollVelocity()
2257 isOutOfBoundary, needFlingAtEdge, edgeEffect, IsAtTop(), IsAtBottom(), velocity, in HandleScrollVelocity()
2657 bool isAtBottom = pattern->IsAtBottom(); in FireObserverOnDidScroll()
2910 return ((LessNotEqual(offset, 0) && pattern->IsAtBottom()) || in HotZoneScroll()
2988 if ((Positive(offsetPct) && !IsAtTop()) || (Negative(offsetPct) && !IsAtBottom())) { in HandleMoveEventInComp()
3443 if (LessNotEqual(offset, 0) && pattern->IsAtBottom()) { in ScrollAtFixedVelocity()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/
H A Dtext_field_accessibility_property.cpp194 if (!textFieldPattern->IsAtBottom()) { in SetSpecificSupportAction()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/select_popup/
H A Drosen_render_select_popup.cpp176 if (!renderScroll_->IsAtBottom()) { in Paint()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/scroll/
H A Drender_scroll.h86 bool IsAtBottom() const in IsAtBottom() function

12