Searched refs:ViewProxy (Results 1 – 9 of 9) sorted by relevance
21 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);
26 class ViewProxy final {28 ViewProxy() = default;29 ViewProxy(std::unique_ptr<OHOS::UIView> view, const std::string &message) in ViewProxy() function31 explicit ViewProxy(std::unique_ptr<OHOS::UIView> view) : view_(std::move(view)) { } in ViewProxy() function32 ~ViewProxy() = default;
38 ViewProxy &operator[](const std::string &id) override;49 std::vector<std::unique_ptr<ViewProxy>> coms_;50 std::unordered_map<std::string_view, ViewProxy *> comsMap_;
89 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 []()
140 ViewProxy &SubPage::operator[](const std::string &id) in operator []()142 static ViewProxy dummy; in operator []()
34 ViewProxy &operator[](const std::string &id) override;
37 virtual ViewProxy &operator[](const std::string &id) = 0;
40 ViewProxy &operator[](const ComInfo &comInfo) const;
186 ViewProxy &PageManager::operator[](const ComInfo &comInfo) const in operator []()