Home
last modified time | relevance | path

Searched refs:nextNode (Results 1 - 24 of 24) sorted by relevance

/foundation/arkui/ace_engine/test/unittest/core/pattern/text_timer/
H A Dtext_timer_builder_test_ng.cpp149 * @tc.steps: step4. make nextNode callback in HWTEST_F()
151 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { in HWTEST_F() local
162 pattern->SetBuilderFunc(nextNode); in HWTEST_F()
217 * @tc.steps: step4. make nextNode callback in HWTEST_F()
219 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { in HWTEST_F() local
230 pattern->SetBuilderFunc(nextNode); in HWTEST_F()
285 * @tc.steps: step4. make nextNode callback in HWTEST_F()
287 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { in HWTEST_F() local
298 pattern->SetBuilderFunc(nextNode); in HWTEST_F()
353 * @tc.steps: step4. make nextNode callbac in HWTEST_F()
355 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
423 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
491 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
559 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
627 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
694 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
761 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
828 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
895 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
962 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1029 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1096 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1163 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1230 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1297 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1364 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1431 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1498 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1565 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1632 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1699 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1766 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1833 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1900 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
1967 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { HWTEST_F() local
[all...]
H A Dtext_timer_test_ng.cpp847 auto nextNode = [](TextTimerConfiguration config) -> RefPtr<FrameNode> { in HWTEST_F() local
854 pattern->SetBuilderFunc(nextNode); in HWTEST_F()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H A Dgatt_database.cpp128 auto nextNode = ++item; in ReleaseHandle() local
150 if (nextNode == availableHandles_.end()) { in ReleaseHandle()
161 availableHandles_.emplace(nextNode, service.handle_, service.endHandle_); in ReleaseHandle()
168 if (service.handle_ > nextNode->second) { in ReleaseHandle()
177 if (service.handle_ == currentNode->second + 1 && service.endHandle_ + 1 != nextNode->first) { in ReleaseHandle()
183 } else if (service.handle_ != currentNode->second + 1 && service.endHandle_ + 1 == nextNode->first) { in ReleaseHandle()
184 availableHandles_.emplace(nextNode, service.handle_, nextNode->second); in ReleaseHandle()
185 availableHandles_.erase(nextNode); in ReleaseHandle()
189 } else if (service.handle_ == currentNode->second + 1 && service.endHandle_ + 1 == nextNode in ReleaseHandle()
[all...]
/foundation/communication/dsoftbus/core/common/include/
H A Dcommon_list.h118 __attribute__((always_inline)) static inline void ListDel(ListNode *prevNode, ListNode *nextNode) in ListDel() argument
120 nextNode->prev = prevNode; in ListDel()
121 prevNode->next = nextNode; in ListDel()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/dumper/src/
H A Ddump_helper.cpp60 if (tmpCommandNode->nextNode == nullptr) { in Dump()
65 tmpCommandNode = tmpCommandNode->nextNode; in Dump()
123 command.nextNode = nullptr; in GetCommand()
154 command->nextNode = realHeadNode; in AddHeadNode()
170 command->nextNode = realHeadNode->nextNode; in AddNode()
171 realHeadNode->nextNode = command; in AddNode()
174 tmpRealHeadNode = tmpRealHeadNode->nextNode; in AddNode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/menu/menu_item_group/
H A Dmenu_item_group_pattern.cpp203 auto nextNode = parent->GetChildAtIndex(currentIndex + 1); in OnIntItemPressed() local
204 if (nextNode != nullptr && nextNode->GetTag() == V2::MENU_ITEM_GROUP_ETS_TAG) { in OnIntItemPressed()
205 auto pattern = DynamicCast<FrameNode>(nextNode)->GetPattern<MenuItemGroupPattern>(); in OnIntItemPressed()
/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/src/
H A Dsoftbus_proxychannel_manager.c209 ProxyChannelInfo *nextNode = NULL; in TransProxySpecialUpdateChanInfo() local
210 LIST_FOR_EACH_ENTRY_SAFE(item, nextNode, &g_proxyChannelList->list, ProxyChannelInfo, node) { in TransProxySpecialUpdateChanInfo()
243 ProxyChannelInfo *nextNode = NULL; in TransProxyGetChanByChanId() local
245 LIST_FOR_EACH_ENTRY_SAFE(item, nextNode, &g_proxyChannelList->list, ProxyChannelInfo, node) { in TransProxyGetChanByChanId()
282 ProxyChannelInfo *nextNode = NULL; in TransProxyDelChanByReqId() local
289 LIST_FOR_EACH_ENTRY_SAFE(item, nextNode, &g_proxyChannelList->list, ProxyChannelInfo, node) { in TransProxyDelChanByReqId()
308 ProxyChannelInfo *nextNode = NULL; in TransProxyDelChanByChanId() local
315 LIST_FOR_EACH_ENTRY_SAFE(item, nextNode, &g_proxyChannelList->list, ProxyChannelInfo, node) { in TransProxyDelChanByChanId()
383 ProxyChannelInfo *nextNode = NULL; in TransProxyReleaseChannelList() local
384 LIST_FOR_EACH_ENTRY_SAFE(removeNode, nextNode, proxyChannelLis in TransProxyReleaseChannelList()
402 ProxyChannelInfo *nextNode = NULL; TransProxyDelByConnId() local
427 ProxyChannelInfo *nextNode = NULL; TransProxyDelByChannelId() local
458 ProxyChannelInfo *nextNode = NULL; TransProxyResetChan() local
1649 ProxyChannelInfo *nextNode = NULL; TransProxyTimerItemProc() local
1694 ProxyChannelInfo *nextNode = NULL; TransProxyTimerProc() local
1892 ProxyChannelInfo *nextNode = NULL; TransProxyManagerDeinitInner() local
1945 ProxyChannelInfo *nextNode = NULL; TransProxyDeathCallback() local
1970 ProxyChannelInfo *nextNode = NULL; TransProxyGetAppInfoByChanId() local
2116 ProxyChannelInfo *nextNode = NULL; TransProxySetAuthHandleByChanId() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/option/
H A Doption_pattern.cpp341 auto nextNode = parent->GetChildAtIndex(index_ + 1); in UpdateNextNodeDivider() local
342 if (nextNode) { in UpdateNextNodeDivider()
343 auto pattern = DynamicCast<FrameNode>(nextNode)->GetPattern<OptionPattern>(); in UpdateNextNodeDivider()
348 if (!InstanceOf<FrameNode>(nextNode)) { in UpdateNextNodeDivider()
349 LOGW("next optionNode is not a frameNode! type = %{public}s", nextNode->GetTag().c_str()); in UpdateNextNodeDivider()
352 auto props = DynamicCast<FrameNode>(nextNode)->GetPaintProperty<OptionPaintProperty>(); in UpdateNextNodeDivider()
355 nextNode->MarkDirtyNode(PROPERTY_UPDATE_RENDER); in UpdateNextNodeDivider()
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dlist_adapter.cpp48 ViewNativePair *nextNode = nullptr; in ~ListAdapter() local
56 nextNode = currentNode->next; in ~ListAdapter()
63 currentNode = nextNode; in ~ListAdapter()
/foundation/graphic/graphic_utils_lite/test/
H A Dlist_unit_test.cpp225 auto nextNode = list_->Remove(node); in HWTEST_F() local
228 EXPECT_EQ(nextNode->data_, SECOND_VALUE); in HWTEST_F()
/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/src/
H A Dlnn_lane_model.c272 LaneIdInfo *nextNode = NULL; in ClearProfileMap() local
273 LIST_FOR_EACH_ENTRY_SAFE(infoNode, nextNode, &laneModel->laneIdList, LaneIdInfo, node) { in ClearProfileMap()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/menu/
H A Dmenu_pattern.cpp1731 RefPtr<UINode> nextNode = nullptr; in OnItemPressed() local
1733 nextNode = GetForEachMenuItem(parent, true); in OnItemPressed()
1739 nextNode = parent->GetChildAtIndex(index + 1); in OnItemPressed()
1741 CHECK_NULL_VOID(nextNode); in OnItemPressed()
1742 if (nextNode->GetTag() == V2::JS_FOR_EACH_ETS_TAG) { in OnItemPressed()
1743 nextNode = GetForEachMenuItem(nextNode, true); in OnItemPressed()
1745 CHECK_NULL_VOID(nextNode); in OnItemPressed()
1746 if (!InstanceOf<FrameNode>(nextNode)) { in OnItemPressed()
1747 LOGW("next menuNode is not a frameNode! type = %{public}s", nextNode in OnItemPressed()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/frontend/
H A Dcj_page_router_ng.cpp566 auto nextNode = pageRouterStack_.back().Upgrade(); in PopPage() local
567 CHECK_NULL_VOID(nextNode); in PopPage()
568 auto pagePattern = nextNode->GetPattern<PagePattern>(); in PopPage()
603 auto nextNode = pageRouterStack_.back().Upgrade(); in PopPageToIndex() local
604 CHECK_NULL_VOID(nextNode); in PopPageToIndex()
605 auto pagePattern = nextNode->GetPattern<PagePattern>(); in PopPageToIndex()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/relative_container/
H A Drelative_container_layout_algorithm.cpp385 std::string nextNode = rightAnchor.anchor; in CheckNodeInHorizontalChain() local
386 while (idNodeMap_.find(nextNode) != idNodeMap_.end()) { in CheckNodeInHorizontalChain()
390 CHECK_NULL_BREAK(idNodeMap_.find(nextNode) != idNodeMap_.end()); in CheckNodeInHorizontalChain()
391 auto nextNodeWrapper = idNodeMap_[nextNode].layoutWrapper; in CheckNodeInHorizontalChain()
405 chainNodes.emplace_back(nextNode); in CheckNodeInHorizontalChain()
416 currentNode = nextNode; in CheckNodeInHorizontalChain()
418 nextNode = nextNodeAlignRules[AlignDirection::RIGHT].anchor; in CheckNodeInHorizontalChain()
476 std::string nextNode = bottomAnchor.anchor; in CheckNodeInVerticalChain() local
477 while (idNodeMap_.find(nextNode) != idNodeMap_.end()) { in CheckNodeInVerticalChain()
481 CHECK_NULL_BREAK(idNodeMap_.find(nextNode) ! in CheckNodeInVerticalChain()
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/dumper/include/
H A Ddump_helper.h43 std::shared_ptr<CommandNode> nextNode; member
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/file/src/
H A Dclient_trans_file_listener.c54 FileListener *nextNode = NULL; in TransFileDeinit() local
55 LIST_FOR_EACH_ENTRY_SAFE(fileNode, nextNode, &(g_fileListener->list), FileListener, node) { in TransFileDeinit()
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dgt_bundle_manager_service.cpp480 PreAppList *nextNode = nullptr; in InstallAllSystemBundle() local
481 LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(currentNode, nextNode, &list->appDoubleList, PreAppList, appDoubleList) { in InstallAllSystemBundle()
572 PreAppList *nextNode = nullptr; in ScanSystemApp() local
574 LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(currentNode, nextNode, &list->appDoubleList, PreAppList, appDoubleList) { in ScanSystemApp()
1332 PreAppList *nextNode = nullptr; in FreePreAppInfo() local
1333 LOS_DL_LIST_FOR_EACH_ENTRY_SAFE(currentNode, nextNode, &list->appDoubleList, PreAppList, appDoubleList) { in FreePreAppInfo()
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/tcp_direct/src/
H A Dclient_trans_tcp_direct_manager.c230 TcpDirectChannelInfo *nextNode = NULL; in TransTdcDelChannelInfo() local
239 LIST_FOR_EACH_ENTRY_SAFE(item, nextNode, &(g_tcpDirectChannelInfoList->list), TcpDirectChannelInfo, node) { in TransTdcDelChannelInfo()
/foundation/arkui/ace_engine/test/unittest/core/pattern/relative_container/old_cases/
H A Drelative_container_testthree_ng.cpp352 childMeasureWrapper.id = "nextNode"; in HWTEST_F()
353 relativeContainerLayoutAlgorithm->idNodeMap_["nextNode"] = childMeasureWrapper; in HWTEST_F()
356 std::string nextNode = "nextNode"; in HWTEST_F() local
358 alignRule.anchor = "nextNode"; in HWTEST_F()
364 rightAnchor.anchor = "nextNode"; in HWTEST_F()
398 childMeasureWrapper.id = "nextNode"; in HWTEST_F()
399 relativeContainerLayoutAlgorithm->idNodeMap_["nextNode"] = childMeasureWrapper; in HWTEST_F()
402 std::string nextNode = "nextNode"; in HWTEST_F() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dfocus_hub.cpp2338 RefPtr<FocusHub> nextNode;
2379 nextNode = node;
2384 nextNode ? nextNode->GetFrameName().c_str() : "NULL", nextNode ? nextNode->GetFrameId() : -1, resDistance);
2385 return nextNode;
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ng/
H A Dpage_router_manager.cpp1844 auto nextNode = GetCurrentPageNode(); in PopPage() local
1845 CHECK_NULL_VOID(nextNode); in PopPage()
1846 auto pagePattern = nextNode->GetPattern<PagePattern>(); in PopPage()
1877 auto nextNode = GetCurrentPageNode(); in PopPageToIndex() local
1878 CHECK_NULL_VOID(nextNode); in PopPageToIndex()
1879 auto pagePattern = nextNode->GetPattern<PagePattern>(); in PopPageToIndex()
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/src/
H A Dclient_trans_proxy_manager.c860 ChannelSliceProcessor *nextNode = NULL; in ClientTransProxySliceTimerProc() local
870 LIST_FOR_EACH_ENTRY_SAFE(removeNode, nextNode, &g_channelSliceProcessorList->list, ChannelSliceProcessor, head) { in ClientTransProxySliceTimerProc()
/foundation/arkui/ace_engine/test/unittest/core/pattern/menu/
H A Dmenu_pattern_test_ng.cpp1245 auto nextNode = FrameNode::CreateFrameNode(V2::JS_FOR_EACH_ETS_TAG, 1, AceType::MakeRefPtr<MenuWrapperPattern>(1)); in HWTEST_F() local
1246 ASSERT_NE(nextNode, nullptr); in HWTEST_F()
1257 nextNode->MountToParent(parent); in HWTEST_F()
H A Dmenu_patternEx_test_ng.cpp1814 auto nextNode = FrameNode::CreateFrameNode(V2::JS_FOR_EACH_ETS_TAG, 1, AceType::MakeRefPtr<MenuWrapperPattern>(1)); in HWTEST_F() local
1818 nextNode->MountToParent(parent); in HWTEST_F()

Completed in 34 milliseconds