Lines Matching refs:std

65     const std::shared_ptr<OHOS::Accessibility::AccessibilityElementInfo>& GetElementInfoByOrder()
74 const std::vector<std::shared_ptr<OHOS::Accessibility::AccessibilityElementInfo>>& GetActiveElementInfos()
83 const std::vector<std::shared_ptr<ComponentTree>>& GetActiveComponentInfos()
103 std::uint32_t FindInputComponentIndex(bool shouldScreenCap);
114 bool NeedFocus(const std::string & type)
129 void SetFocusNum(const std::string & focusNum)
131 focusNum_ = std::stoi(focusNum);
146 void SetFocusTypeList(const std::string &optarg)
164 void SetActiveComponent(const std::vector<std::shared_ptr<ComponentTree>>& inputComponentList);
170 void SetActiveComponent(const std::shared_ptr<ComponentTree>& inputComponent);
176 const std::shared_ptr<ComponentTree>& GetCurrentComponents()
184 const std::shared_ptr<ComponentTree>& GetNewComponents()
193 const std::shared_ptr<PageTree>& GetCurrentPage()
202 const std::shared_ptr<PageTree>& GetNewPage()
211 const std::shared_ptr<AbilityTree>& GetCurrentAbility()
220 const std::vector<std::shared_ptr<AbilityTree>>& GetBundleList()
244 const std::shared_ptr<OHOS::Accessibility::AccessibilityElementInfo> GetNewElementInfoList(uint32_t index)
253 const std::map<std::string, std::uint32_t> GetComponentIndexMap()
258 const std::map<std::string, std::uint32_t> GetComponentInputCountMap()
263 void SetOldPagePath(const std::string& pagePath)
268 std::string GetPagePath()
273 void SetComponentType(const std::string& componmentType)
278 bool RecursComponent(const std::shared_ptr<ComponentTree>& componentTree);
280 void RecursSetDialog(const std::shared_ptr<ComponentTree>& componentTree);
284 bool RecursGetChildElementInfo(const std::shared_ptr<OHOS::Accessibility::AccessibilityElementInfo>& parent,
285 const std::shared_ptr<ComponentTree>& componentParent);
286 bool FindAbility(const std::shared_ptr<AbilityTree>& abilityNode);
291 std::shared_ptr<OHOS::Accessibility::AccessibilityElementInfo> inputElementInfo_;
292 std::shared_ptr<ComponentTree> inputComponent_;
293 std::vector<std::shared_ptr<OHOS::Accessibility::AccessibilityElementInfo>> inputElementInfoList_;
294 std::vector<std::shared_ptr<ComponentTree>> inputComponentList_;
296 std::shared_ptr<ComponentTree> currentComponentNode_ = std::make_shared<ComponentTree>();
297 std::shared_ptr<ComponentTree> newComponentNode_ = std::make_shared<ComponentTree>();
299 std::shared_ptr<AbilityTree> currentAbilityNode_ = std::make_shared<AbilityTree>();
300 std::shared_ptr<AbilityTree> newAbilityNode_ = std::make_shared<AbilityTree>();
302 std::shared_ptr<PageTree> currentPageNode_ = std::make_shared<PageTree>();
303 std::shared_ptr<PageTree> newPageNode_ = std::make_shared<PageTree>();
305 std::vector<std::shared_ptr<OHOS::Accessibility::AccessibilityElementInfo>> newElementInfoList_;
307 std::vector<std::shared_ptr<OHOS::Accessibility::AccessibilityElementInfo>> elementInfoList_;
309 std::vector<std::shared_ptr<AbilityTree>> abilityTreeList_;
310 std::map<std::uint32_t, std::shared_ptr<PageTree>> pageTreeList_;
311 std::map<std::uint32_t, std::shared_ptr<ComponentTree>> componentTreeList_;
316 std::string pagePath_;
317 std::map<std::uint64_t, std::uint64_t> componentCountMap_;
319 std::shared_ptr<ComponentTree> dialogComponent_ = nullptr;
321 std::map<std::string, std::uint32_t> page2componentIndex_;
322 std::map<std::string, std::uint32_t> page2inputCount_;
323 std::string componmentType_ = "";
324 std::uint32_t focusNum_ = FOCUS_NUM_DEFAULT;
325 std::vector<std::string> focusTypeList_;