Searched refs:contentList (Results 1 – 5 of 5) sorted by relevance
796 void AccessibilityElementInfo::SetContentList(const std::vector<std::string> &contentList) in SetContentList() argument799 contentList_.resize(contentList.size()); in SetContentList()800 std::copy(contentList.begin(), contentList.end(), contentList_.begin()); in SetContentList()803 void AccessibilityElementInfo::GetContentList(std::vector<std::string> &contentList) const in GetContentList()805 contentList.clear(); in GetContentList()806 contentList.resize(contentList_.size()); in GetContentList()807 std::copy(contentList_.begin(), contentList_.end(), contentList.begin()); in GetContentList()
160 auto contentList = GetContentList(); in Marshalling() local161 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, contentList.size()); in Marshalling()162 for (auto &content : contentList) { in Marshalling()
1448 void SetContentList(const std::vector<std::string> &contentList);1455 void GetContentList(std::vector<std::string> &contentList) const;
1091 std::vector<std::string> contentList; variable1092 contentList.push_back("test");1093 elementInfo_->SetContentList(contentList);
2161 std::vector<std::string> contentList; in DumpContentListNG() local2162 nodeInfo.GetContentList(contentList); in DumpContentListNG()2164 for (auto content : contentList) { in DumpContentListNG()