Home
last modified time | relevance | path

Searched refs:GetItemByIndex (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/list/
H A Dgrid_layout_manager.cpp336 auto curFocus = renderList_.GetItemByIndex(index); in focusMove()
344 … auto next = renderList_.GetItemByIndex(direction == KeyDirection::UP ? --index : ++index); in focusMove()
351 … next = renderList_.GetItemByIndex(direction == KeyDirection::UP ? --index : ++index); in focusMove()
357 auto next = renderList_.GetItemByIndex(--index); in focusMove()
365 auto next = renderList_.GetItemByIndex(++index); in focusMove()
H A Drender_list.h274 RefPtr<RenderListItem> GetItemByIndex(int32_t index);
H A Drender_list.cpp413 RefPtr<RenderListItem> RenderList::GetItemByIndex(int32_t index) in GetItemByIndex() function in OHOS::Ace::RenderList
H A Dlist_layout_manager.cpp519 … auto next = renderList_.GetItemByIndex(direction == KeyDirection::UP ? --index : ++index); in focusMove()