Home
last modified time | relevance | path

Searched refs:ViewProxy (Results 1 – 9 of 9) sorted by relevance

/base/update/updater/test/unittest/updater_ui_test/view/
Dui_view_proxy_unittest.cpp21 using Updater::ViewProxy;
37 ViewProxy viewproxy {};
46 ViewProxy viewproxy { nullptr, "A" };
61 ViewProxy viewproxy { std::move(label), "label1" };
76 ViewProxy viewproxy { std::move(label), "label1" };
84 OHOS::UIView *dummy = ViewProxy {}.operator->();
86 ViewProxy viewproxy { std::make_unique<TextLabelAdapter>(), "label1" };
88 EXPECT_EQ(ViewProxy {}.operator->(), dummy);
/base/update/updater/services/ui/view/page/
Dview_proxy.h26 class ViewProxy final {
28 ViewProxy() = default;
29 ViewProxy(std::unique_ptr<OHOS::UIView> view, const std::string &message) in ViewProxy() function
31 explicit ViewProxy(std::unique_ptr<OHOS::UIView> view) : view_(std::move(view)) { } in ViewProxy() function
32 ~ViewProxy() = default;
Dbase_page.h38 ViewProxy &operator[](const std::string &id) override;
49 std::vector<std::unique_ptr<ViewProxy>> coms_;
50 std::unordered_map<std::string_view, ViewProxy *> comsMap_;
Dbase_page.cpp89 auto upView = std::make_unique<ViewProxy>(ComponentFactory::CreateUxComponent(viewInfo), in BuildCom()
113 ViewProxy &BasePage::operator[](const std::string &id) in operator []()
115 static ViewProxy dummy; in operator []()
Dsub_page.cpp140 ViewProxy &SubPage::operator[](const std::string &id) in operator []()
142 static ViewProxy dummy; in operator []()
Dsub_page.h34 ViewProxy &operator[](const std::string &id) override;
Dpage.h37 virtual ViewProxy &operator[](const std::string &id) = 0;
Dpage_manager.h40 ViewProxy &operator[](const ComInfo &comInfo) const;
Dpage_manager.cpp186 ViewProxy &PageManager::operator[](const ComInfo &comInfo) const in operator []()