Searched refs:inView (Results 1 - 10 of 10) sorted by relevance
/foundation/arkui/ui_lite/frameworks/components/ |
H A D | text_adapter.cpp | 60 UIView* TextAdapter::GetView(UIView* inView, int16_t index) in GetView() argument 62 UILabel* newView = GetTextView(inView, index); in GetView() 84 UILabel* TextAdapter::GetTextView(UIView* inView, int16_t index) in GetTextView() argument 88 return GetDynamicText(inView, index); in GetTextView() 90 return GetIntegerText(inView, index); in GetTextView() 96 UILabel* TextAdapter::GetDynamicText(UIView* inView, int16_t index) in GetDynamicText() argument 106 UILabel* newView = CreateUILabel(inView); in GetDynamicText() 119 UILabel* TextAdapter::GetIntegerText(UIView* inView, int16_t index) in GetIntegerText() argument 124 UILabel* newView = CreateUILabel(inView); in GetIntegerText() 129 if (inView in GetIntegerText() 157 CreateUILabel(UIView* inView) CreateUILabel() argument [all...] |
H A D | ui_list.cpp | 91 UIView* inView = nullptr; in GetView() local 95 inView = scrapView_.Back(); in GetView() 98 retView = adapter_->GetView(inView, index); in GetView()
|
/foundation/arkui/ui_lite/interfaces/kits/components/ |
H A D | text_adapter.h | 89 * @param inView Indicates the pointer to the reusable instance. If this parameter is not <b>NULL</b>, a reusable 91 * <b>UILabel</b> instance, just resusing the instance specified by <b>inView</b> to update the <b>inView</b> 101 UIView* GetView(UIView* inView, int16_t index) override; 258 virtual UILabel* GetTextView(UIView* inView, int16_t index); 259 virtual UILabel* CreateUILabel(UIView* inView); 266 UILabel* GetDynamicText(UIView* inView, int16_t index); 267 UILabel* GetIntegerText(UIView* inView, int16_t index);
|
H A D | abstract_adapter.h | 76 * @param inView Indicates the pointer to the reusable instance. If this parameter is not <b>NULL</b>, a reusable 78 * <b>UIView</b> instance, just reusing the instance specified by <b>inView</b> to update the 79 * <b>inView</b> data. 89 virtual UIView* GetView(UIView* inView, int16_t index) = 0;
|
/foundation/arkui/ui_lite/test/framework/src/ |
H A D | test_case_list_adapter.cpp | 138 UIView* TestCaseListAdapter::GetView(UIView* inView, int16_t index) in GetView() argument 148 if (inView == nullptr) { in GetView() 159 item = static_cast<UILabelButton*>(inView); in GetView()
|
/foundation/arkui/ui_lite/test/framework/include/ |
H A D | test_case_list_adapter.h | 31 UIView* GetView(UIView* inView, int16_t index) override;
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | list_adapter.cpp | 189 UIView *ListAdapter::GetView(UIView *inView, int16_t index) in GetView() argument 207 // 2. delete inView if it is not null(if inView not null, it means this view is out of the list visible area, need in GetView() 210 if (inView != nullptr) { in GetView() 211 // this function will check whether the inView is For type UIView, if it is, delete it, or else do nothing. in GetView() 212 DeleteItem(inView); in GetView() 379 "not found the view can be free, it means this inView is not belongs For type child"); in DeleteItem()
|
H A D | list_adapter.h | 52 * if inView is null, adapter will new a view. if not, adapter will delete the inView and new a view. 57 UIView *GetView(UIView *inView, int16_t index) override;
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/waterflow/layout/sliding_window/ |
H A D | water_flow_layout_sw.cpp | 486 ScrollAlign WaterFlowLayoutSW::ParseAutoAlign(int32_t jumpIdx, bool inView) in ParseAutoAlign() argument 488 if (inView) { in ParseAutoAlign() 515 bool inView = info_->ItemInView(jumpIdx); in MeasureOnJump() local 517 align = ParseAutoAlign(jumpIdx, inView); in MeasureOnJump() 525 Jump(jumpIdx, align, inView || closeToView); in MeasureOnJump()
|
H A D | water_flow_layout_sw.h | 75 * @param inView true if item is between startIndex and endIndex. 78 ScrollAlign ParseAutoAlign(int32_t jumpIdx, bool inView);
|
Completed in 7 milliseconds