Home
last modified time | relevance | path

Searched refs:nodesToNotifyMemoryLevel_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pipeline/
H A Dpipeline_context_test_ng.cpp616 context_->nodesToNotifyMemoryLevel_.clear();
619 EXPECT_EQ(context_->nodesToNotifyMemoryLevel_.size(), DEFAULT_SIZE2);
626 EXPECT_EQ(context_->nodesToNotifyMemoryLevel_.size(), DEFAULT_SIZE1);
635 …find(context_->nodesToNotifyMemoryLevel_.begin(), context_->nodesToNotifyMemoryLevel_.end(), NOT_R…
636 EXPECT_EQ(iter, context_->nodesToNotifyMemoryLevel_.end());
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline_ng/
H A Dpipeline_context.cpp3713 nodesToNotifyMemoryLevel_.clear(); in Destroy()
3908 nodesToNotifyMemoryLevel_.emplace_back(nodeId); in AddNodesToNotifyMemoryLevel()
3913 nodesToNotifyMemoryLevel_.remove(nodeId); in RemoveNodesToNotifyMemoryLevel()
3918 auto iter = nodesToNotifyMemoryLevel_.begin(); in NotifyMemoryLevel()
3919 while (iter != nodesToNotifyMemoryLevel_.end()) { in NotifyMemoryLevel()
3922 iter = nodesToNotifyMemoryLevel_.erase(iter); in NotifyMemoryLevel()
H A Dpipeline_context.h1095 std::list<int32_t> nodesToNotifyMemoryLevel_; variable