/foundation/distributeddatamgr/udmf/framework/common/ |
H A D | graph.cpp | 42 void Graph::AddEdge(const std::string &startNode, const std::string &endNode) in AddEdge() argument 45 int32_t end = GetIndex(endNode); in AddEdge() 47 LOG_WARN(UDMF_CLIENT, "abnormal edge, startNode:%{public}s, endNode:%{public}s. ", in AddEdge() 48 startNode.c_str(), endNode.c_str()); in AddEdge()
|
H A D | graph.h | 41 void AddEdge(const std::string &startNode, const std::string &endNode);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_item_layout_algorithm.cpp | 79 auto endNode = layoutWrapper->GetOrCreateChildByIndex(endNodeIndex_); in Measure() local 80 CHECK_NULL_VOID(endNode); in Measure() 81 endNode->Measure(endLayoutConstraint); in Measure() 83 endNodeSize_ = endNode->GetGeometryNode()->GetMarginFrameSize().CrossSize(axis_); in Measure()
|
H A D | list_item_model_ng.cpp | 162 RefPtr<NG::UINode> endNode; in SetDeleteArea() local 166 endNode = NG::ViewStackProcessor::GetInstance()->Finish(); in SetDeleteArea() 168 pattern->SetEndNode(endNode); in SetDeleteArea() 231 const auto endNode = AceType::Claim<UINode>(buildNode); in SetDeleteArea() local 232 pattern->SetEndNode(endNode); in SetDeleteArea()
|
H A D | list_item_pattern.cpp | 170 void ListItemPattern::SetEndNode(const RefPtr<NG::UINode>& endNode) in SetEndNode() argument 174 if (endNode) { in SetEndNode() 176 host->AddChild(endNode); in SetEndNode() 177 endNodeIndex_ = host->GetChildIndexById(endNode->GetId()); in SetEndNode() 185 host->ReplaceChild(host->GetChildAtIndex(endNodeIndex_), endNode); in SetEndNode() 212 auto endNode = host->GetChildAtIndex(endNodeIndex_); in OnDidPop() local 213 CHECK_NULL_VOID(endNode); in OnDidPop() 214 endNode->MovePosition(-1); in OnDidPop() 215 endNodeIndex_ = host->GetChildIndexById(endNode->GetId()); in OnDidPop()
|
H A D | list_item_pattern.h | 99 void SetEndNode(const RefPtr<NG::UINode>& endNode);
|
/foundation/arkui/ace_engine/test/unittest/core/accessibility/ |
H A D | accessibility_manager_ng_test_ng.cpp | 260 auto endNode = FrameNode::CreateFrameNode("main", NUMTWO, AceType::MakeRefPtr<Pattern>(), true); in HWTEST_F() local 261 ASSERT_NE(endNode, nullptr); in HWTEST_F() 262 endNode->UpdateRecycleElmtId(NUMTWO); in HWTEST_F() 263 result = accessibilityManagerNg.ConvertPointFromAncestorToNode(frameNode, endNode, hoverPoint, pointNode); in HWTEST_F() 266 endNode->SetParent(frameNode); in HWTEST_F() 267 result = accessibilityManagerNg.ConvertPointFromAncestorToNode(frameNode, endNode, hoverPoint, pointNode); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/accessibility/ |
H A D | accessibility_manager_ng.cpp | 264 const RefPtr<NG::FrameNode>& ancestor, const RefPtr<NG::FrameNode>& endNode, in ConvertPointFromAncestorToNode() 268 CHECK_NULL_RETURN(endNode, false); in ConvertPointFromAncestorToNode() 270 RefPtr<NG::FrameNode> curr = endNode; in ConvertPointFromAncestorToNode() 263 ConvertPointFromAncestorToNode( const RefPtr<NG::FrameNode>& ancestor, const RefPtr<NG::FrameNode>& endNode, const PointF& pointAncestor, PointF& pointNode) ConvertPointFromAncestorToNode() argument
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/list/ |
H A D | list_swipe_test_ng.cpp | 184 * @tc.desc: Set endNode, test drag and endNode layout 275 * @tc.desc: Set endNode, SwipeEdgeEffect::None, can not over the edge 341 * @tc.desc: Set endNode, SwipeEdgeEffect::Spring, can over the edge 436 * @tc.desc: Test Drag with endNode in RTL Layout 557 * @tc.desc: Test Drag with endNode in Horizontal Layout 679 * @tc.desc: Test Drag with endNode in RTL and Horizontal Layout 783 * @tc.desc: Set endNode, swipe end with velocity 891 * @tc.desc: Set endNode, Test swiperAction Attribute for ListItem, set enterEndDeleteArea callback and 996 * @tc.desc: Set the swiperAction Attribute for ListItem, set endNode, endDeleteAre 1384 RefPtr<NG::UINode> endNode; HWTEST_F() local 1388 EXPECT_EQ(GetChildFrameNode(item_, endNodeIndex), endNode); HWTEST_F() local 1485 auto endNode = AceType::DynamicCast<FrameNode>(endElement); HWTEST_F() local 1492 EXPECT_EQ(GetChildFrameNode(item_, endNodeIndex), endNode); HWTEST_F() local [all...] |