Home
last modified time | relevance | path

Searched refs:sibling (Results 1 - 18 of 18) sorted by relevance

/foundation/arkui/ace_engine/interfaces/native/node/
H A Dnative_compatible.h323 * @brief Inserts a component to a parent node after the specified <b>sibling</b> node.
329 * @param sibling Indicates the pointer to the sibling node after which the target node is to be inserted.
334 int32_t (*insertChildAfter)(ArkUI_NodeHandle parent, ArkUI_NodeHandle child, ArkUI_NodeHandle sibling);
337 * @brief Inserts a component to a parent node before the specified <b>sibling</b> node.
343 * @param sibling Indicates the pointer to the sibling node before which the target node is to be inserted.
348 int32_t (*insertChildBefore)(ArkUI_NodeHandle parent, ArkUI_NodeHandle child, ArkUI_NodeHandle sibling);
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dframe_node_modifier.cpp80 ArkUI_Bool InsertChildAfterInFrameNode(ArkUINodeHandle node, ArkUINodeHandle child, ArkUINodeHandle sibling) in InsertChildAfterInFrameNode() argument
90 auto* siblingNode = reinterpret_cast<UINode*>(sibling); in InsertChildAfterInFrameNode()
167 auto sibling = parent->GetFrameNodeChildByIndex(index + 1, false, isExpanded); in GetNextSibling() local
168 return reinterpret_cast<ArkUINodeHandle>(sibling); in GetNextSibling()
184 auto sibling = parent->GetFrameNodeChildByIndex(index - 1, false, isExpanded); in GetPreviousSibling() local
185 return reinterpret_cast<ArkUINodeHandle>(sibling); in GetPreviousSibling()
H A Dview_model.cpp745 auto* sibling = reinterpret_cast<UINode*>(siblingNode); in InsertChildAfter() local
746 if (sibling) { in InsertChildAfter()
747 parent->AddChildAfter(AceType::Claim(child), AceType::Claim(sibling)); in InsertChildAfter()
770 auto* sibling = reinterpret_cast<UINode*>(siblingNode); in InsertChildBefore() local
771 if (sibling) { in InsertChildBefore()
772 parent->AddChildBefore(AceType::Claim(child), AceType::Claim(sibling)); in InsertChildBefore()
H A Drender_node_modifier.cpp66 void InsertChildAfter(ArkUINodeHandle node, ArkUINodeHandle child, ArkUINodeHandle sibling) in InsertChildAfter() argument
71 auto* siblingNode = reinterpret_cast<UINode*>(sibling); in InsertChildAfter()
H A Dnode_api.cpp276 ArkUI_Int32 InsertChildAfter(ArkUINodeHandle parent, ArkUINodeHandle child, ArkUINodeHandle sibling) in InsertChildAfter() argument
282 ViewModel::InsertChildAfter(parent, child, sibling); in InsertChildAfter()
297 ArkUI_Int32 InsertChildBefore(ArkUINodeHandle parent, ArkUINodeHandle child, ArkUINodeHandle sibling) in InsertChildBefore() argument
303 ViewModel::InsertChildBefore(parent, child, sibling); in InsertChildBefore()
/foundation/filemanagement/storage_service/services/storage_daemon/mtpfs/src/
H A Dmtpfs_type_dir.cpp57 f->sibling = nullptr; in ToLIBMTPFolder()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A DjsXNode.js833 let sibling = node.getNextSiblingWithoutExpand();
834 FrameNode.disposeTreeRecursively(sibling);
914 insertChildAfter(child, sibling) {
923 if (sibling === undefined || sibling === null) {
927 flag = getUINativeModule().frameNode.insertChildAfter(this.nodePtr_, child.nodePtr_, sibling.getNodePtr());
1196 insertChildAfter(child, sibling) {
2069 insertChildAfter(child, sibling) {
2078 let indexOfSibling = this.childrenList.findIndex(element => element === sibling);
2080 sibling
[all...]
/foundation/arkui/ui_lite/test/unittest/components/
H A Dui_view_group_unit_test.cpp174 UIView* sibling = viewGroup->GetChildrenRenderHead(); in HWTEST_F() local
175 EXPECT_EQ(sibling, nullptr); in HWTEST_F()
H A Dui_view_unit_test.cpp1195 UIView* sibling = view->GetNextRenderSibling(); in HWTEST_F() local
1196 EXPECT_EQ(sibling, nullptr); in HWTEST_F()
1199 sibling = viewGroup->GetNextRenderSibling(); in HWTEST_F()
1200 EXPECT_EQ(sibling, nullptr); in HWTEST_F()
/foundation/arkui/ace_engine/interfaces/native/
H A Dnative_node.h6707 * @brief Inserts a component to a parent node after the specified <b>sibling</b> node.
6711 * @param sibling Indicates the pointer to the sibling node after which the target node is to be inserted.
6720 int32_t (*insertChildAfter)(ArkUI_NodeHandle parent, ArkUI_NodeHandle child, ArkUI_NodeHandle sibling);
6723 * @brief Inserts a component to a parent node before the specified <b>sibling</b> node.
6727 * @param sibling Indicates the pointer to the sibling node before which the target node is to be inserted.
6736 int32_t (*insertChildBefore)(ArkUI_NodeHandle parent, ArkUI_NodeHandle child, ArkUI_NodeHandle sibling);
6898 * @brief Obtains the previous sibling node.
6906 * @brief Obtains the next sibling nod
[all...]
/foundation/arkui/ui_lite/interfaces/kits/components/
H A Dui_view.h676 * @brief Sets the next sibling view for the view.
677 * @param sibling Indicates the pointer to the next sibling view to set.
681 void SetNextSibling(UIView* sibling);
684 * @brief Obtains the next sibling view of the view.
685 * @return Returns the pointer to the next sibling view.
1153 * @brief Aligns the view with the left of a sibling view.
1154 * @param id Indicates the pointer to the ID of the sibling view.
1163 * @brief Aligns the view with the right of a sibling view.
1164 * @param id Indicates the pointer to the ID of the sibling vie
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_render_node_bridge.cpp272 auto sibling = nodePtr(thirdArg->ToNativePointer(vm)->Value()); in InsertChildAfter() local
273 GetArkUINodeModifiers()->getRenderNodeModifier()->insertChildAfter(nativeNode, child, sibling); in InsertChildAfter()
H A Darkts_native_frame_node_bridge.cpp399 auto sibling = nodePtr(thirdArg->ToNativePointer(vm)->Value());
400 auto result = GetArkUINodeModifiers()->getFrameNodeModifier()->insertChildAfter(nativeNode, child, sibling);
/foundation/arkui/ui_lite/frameworks/components/
H A Dui_view.cpp615 void UIView::SetNextSibling(UIView* sibling) in SetNextSibling() argument
617 nextSibling_ = sibling; in SetNextSibling()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/menu/
H A Dmenu_pattern.cpp380 // determine menu type based on sibling menu count in BeforeCreateLayoutWrapper()
754 // search for inner <Menu> node, once found a <Menu> node, count the number of sibling <Menu>
1567 for (auto&& sibling : siblings) { in FindSiblingMenuCount()
1568 if (sibling->GetTag() == V2::MENU_ETS_TAG && sibling != host) { in FindSiblingMenuCount()
/foundation/arkui/ace_engine/test/unittest/core/pattern/swiper/
H A Dswiper_layout_test_ng.cpp167 // sibling node in HWTEST_F()
168 auto sibling = FrameNode::CreateFrameNode("sibling", -1, AceType::MakeRefPtr<LinearLayoutPattern>(true)); in HWTEST_F() local
169 sibling->layoutProperty_->UpdateUserDefinedIdealSize(CalcSize(CalcLength(100.0f), CalcLength(300.0f))); in HWTEST_F()
170 sibling->MountToParent(parent); in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/interfaces/cjui/
H A Dcjui_api.h2948 void (*insertChildAfter)(ArkUINodeHandle node, ArkUINodeHandle child, ArkUINodeHandle sibling);
2996 ArkUI_Bool (*insertChildAfter)(ArkUINodeHandle node, ArkUINodeHandle child, ArkUINodeHandle sibling);
3294 ArkUI_Int32 (*insertChildAfter)(ArkUINodeHandle parent, ArkUINodeHandle child, ArkUINodeHandle sibling);
3295 ArkUI_Int32 (*insertChildBefore)(ArkUINodeHandle parent, ArkUINodeHandle child, ArkUINodeHandle sibling);
/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/
H A Darkoala_api.h4741 void (*insertChildAfter)(ArkUINodeHandle node, ArkUINodeHandle child, ArkUINodeHandle sibling);
4798 ArkUI_Bool (*insertChildAfter)(ArkUINodeHandle node, ArkUINodeHandle child, ArkUINodeHandle sibling);
5126 ArkUI_Int32 (*insertChildAfter)(ArkUINodeHandle parent, ArkUINodeHandle child, ArkUINodeHandle sibling);
5127 ArkUI_Int32 (*insertChildBefore)(ArkUINodeHandle parent, ArkUINodeHandle child, ArkUINodeHandle sibling);

Completed in 70 milliseconds