Home
last modified time | relevance | path

Searched refs:toastStack_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/stack/
H A Dstack_element.cpp81 if (!std::none_of(toastStack_.begin(), toastStack_.end(), in HasOverlayChild()
222 toastStack_.emplace_back(toastInfo); in PerformPushToast()
257 if (toastStack_.empty()) { in PerformPopToastById()
260 for (auto iter = toastStack_.end() - 1; iter >= toastStack_.begin(); --iter) { in PerformPopToastById()
263 toastStack_.erase(iter); in PerformPopToastById()
272 if (!toastStack_.empty()) { in PerformPopToast()
273 UpdateChild(toastStack_.back().child, nullptr); in PerformPopToast()
274 toastStack_.pop_back(); in PerformPopToast()
422toastStack_.begin(), toastStack_.end(), [child](const ToastInfo& toast) { return toast.child == *c… in PerformDirectPop()
H A Dstack_element.h110 std::vector<ToastInfo> toastStack_; variable