Searched refs:nodeObject (Results 1 - 5 of 5) sorted by relevance
/foundation/arkui/ace_engine/test/unittest/base/ |
H A D | node_object_test.cpp | 40 auto nodeObject = NodeObject::Create(); in HWTEST_F() local 53 nodeObject->Put(nullptr, const_cast<char*>(stringValue.c_str())); in HWTEST_F() 54 nodeObject->Put(nullptr, nullptr); in HWTEST_F() 55 nodeObject->Put(nullptr, doubleValue); in HWTEST_F() 56 nodeObject->Put(nullptr, sizeValue); in HWTEST_F() 57 nodeObject->Put(nullptr, int32Value); in HWTEST_F() 58 nodeObject->Put(nullptr, int64Value); in HWTEST_F() 59 nodeObject->Put(nullptr, boolValue); in HWTEST_F() 62 nodeObject->Put(const_cast<char*>(str.c_str()), const_cast<char*>(stringValue.c_str())); in HWTEST_F() 63 EXPECT_EQ(nodeObject in HWTEST_F() 93 auto nodeObject = NodeObject::Create(); HWTEST_F() local 130 auto nodeObject = NodeObject::Create(); HWTEST_F() local [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | distributed_ui.cpp | 287 auto nodeObject = NodeObject::Create(); in DumpDirtyRenderNodes() local 288 DumpNode(node, -1, OperationType::OP_MODIFY, nodeObject); in DumpDirtyRenderNodes() 289 if (IsRecordHash(nodeId, nodeObject->Hash())) { in DumpDirtyRenderNodes() 290 objectArray.push_back(std::move(nodeObject)); in DumpDirtyRenderNodes() 305 auto nodeObject = NodeObject::Create(); in DumpDirtyLayoutNodes() local 306 DumpNode(node, -1, OperationType::OP_MODIFY, nodeObject); in DumpDirtyLayoutNodes() 307 if (IsRecordHash(nodeId, nodeObject->Hash())) { in DumpDirtyLayoutNodes() 308 objectArray.push_back(std::move(nodeObject)); in DumpDirtyLayoutNodes() 320 auto nodeObject = NodeObject::Create(); in DumpNewNodes() local 321 DumpNode(node, -1, OperationType::OP_ADD, nodeObject); in DumpNewNodes() 330 auto nodeObject = NodeObject::Create(); DumpDelNodes() local 415 DumpNode( const RefPtr<NG::UINode>& node, int depth, OperationType op, std::unique_ptr<NodeObject>& nodeObject) DumpNode() argument 437 auto nodeObject = NodeObject::Create(); DumpTreeInner() local 448 RestoreNode(const std::unique_ptr<NodeObject>& nodeObject) RestoreNode() argument [all...] |
H A D | distributed_ui.h | 105 void DumpNode(const RefPtr<NG::UINode>& node, int depth, OperationType op, std::unique_ptr<NodeObject>& nodeObject); 107 RefPtr<UINode> RestoreNode(const std::unique_ptr<NodeObject>& nodeObject); 108 void AttachToTree(RefPtr<UINode> root, RefPtr<UINode> uiNode, const std::unique_ptr<NodeObject>& nodeObject); 109 void AddNode(const std::unique_ptr<NodeObject>& nodeObject, RefPtr<FrameNode> pageRootNode); 110 void ModNode(const std::unique_ptr<NodeObject>& nodeObject); 111 void DelNode(const std::unique_ptr<NodeObject>& nodeObject);
|
/foundation/arkui/ace_engine/test/unittest/core/base/ |
H A D | distributed_ui_test_ng.cpp | 348 auto nodeObject = std::make_unique<OHOS::Ace::NodeObject>(); in HWTEST_F() local 354 distributedUI.AttachToTree(parentNode, childNode, nodeObject); in HWTEST_F() 357 nodeObject->Put(DISTRIBUTE_UI_DEPTH, 1); in HWTEST_F() 358 distributedUI.AttachToTree(parentNode, childNode, nodeObject); in HWTEST_F() 378 auto nodeObject = std::make_unique<OHOS::Ace::NodeObject>(); in HWTEST_F() local 379 nodeObject->Put(DISTRIBUTE_UI_ID, childNodeId); in HWTEST_F() 385 distributedUI.DelNode(nodeObject); in HWTEST_F() 389 distributedUI.DelNode(nodeObject); in HWTEST_F() 392 distributedUI.DelNode(nodeObject); in HWTEST_F() 412 auto nodeObject in HWTEST_F() local [all...] |
/foundation/arkui/ace_engine/interfaces/inner_api/ace/ |
H A D | serializeable_object.cpp | 40 auto nodeObject = entry(); in CreateNodeObjectInner() local 41 return nodeObject; in CreateNodeObjectInner()
|
Completed in 3 milliseconds