Home
last modified time | relevance | path

Searched refs:dirtyNode (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline_ng/
H A Dui_task_scheduler.cpp287 void UITaskScheduler::AddSingleNodeToFlush(const RefPtr<FrameNode>& dirtyNode) in AddSingleNodeToFlush() argument
289 if (std::find(singleDirtyNodesToFlush_.begin(), singleDirtyNodesToFlush_.end(), dirtyNode) != in AddSingleNodeToFlush()
293 singleDirtyNodesToFlush_.emplace_back(dirtyNode); in AddSingleNodeToFlush()
H A Dui_task_scheduler.h129 void AddSingleNodeToFlush(const RefPtr<FrameNode>& dirtyNode);
H A Dpipeline_context.cpp179 dirtyPropertyNodes_.emplace(dirtyNode); in AddDirtyPropertyNode()
184 void PipelineContext::AddDirtyCustomNode(const RefPtr<UINode>& dirtyNode) in AddDirtyCustomNode() argument
187 CHECK_NULL_VOID(dirtyNode); in AddDirtyCustomNode()
188 auto customNode = DynamicCast<CustomNode>(dirtyNode); in AddDirtyCustomNode()
189 if (customNode && !dirtyNode->GetInspectorIdValue("").empty()) { in AddDirtyCustomNode()
192 dirtyNode->GetId(), dirtyNode->GetParent() ? dirtyNode->GetParent()->GetId() : 0, in AddDirtyCustomNode()
193 dirtyNode->GetInspectorIdValue("").c_str()); in AddDirtyCustomNode()
198 dirtyNode->GetId(), dirtyNode->GetParent() ? dirtyNode->GetParent()->GetId() : 0); in AddDirtyCustomNode()
201 dirtyNodes_.emplace(dirtyNode); in AddDirtyCustomNode()
767 for (const auto& dirtyNode : dirtyPropertyNodes) { in FlushUITasks() local
[all …]
H A Dpipeline_context.h281 void AddDirtyCustomNode(const RefPtr<UINode>& dirtyNode);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/
H A Dpipeline_context.cpp220 for (const auto& dirtyNode : dirtyNodes) { in FlushPredictLayout() local
221 dirtyNode->OnPredictLayout(deadline); in FlushPredictLayout()
482 for (const auto& dirtyNode : dirtyNodes) { in FlushLayout() local
484 dirtyNode->OnLayout(); in FlushLayout()
491 for (const auto& dirtyNode : dirtyNodes) { in FlushLayout() local
492 dirtyNode->ClearExplicitAnimationOption(); in FlushLayout()
512 dirtyNode->SyncGeometryProperties(); in FlushGeometryProperties()
572 for (const auto& dirtyNode : dirtyNodes) { in FlushRender() local
573 context->Repaint(dirtyNode); in FlushRender()
3414 SearchNodesNeedDrawOnPixelMap(dirtyNode); in UpdateNodesNeedDrawOnPixelMap()
[all …]
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/pipeline/
H A Dmock_pipeline_context.cpp514 void PipelineContext::AddDirtyCustomNode(const RefPtr<UINode>& dirtyNode) {} in AddDirtyCustomNode() argument