Home
last modified time | relevance | path

Searched refs:forms_in_query (Results 1 – 4 of 4) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/components/autofill/core/browser/
H A Dautofill_download_manager.h171 void CacheQueryRequest(const std::vector<FormSignature>& forms_in_query,
176 const std::vector<FormSignature>& forms_in_query,
180 const std::vector<std::string>& forms_in_query) const;
H A Dautofill_download_manager.cc914 const std::vector<FormSignature>& forms_in_query, in CacheQueryRequest() argument
917 if (it->first == forms_in_query) { in CacheQueryRequest()
925 cached_forms_.emplace_front(forms_in_query, query_data); in CacheQueryRequest()
931 const std::vector<FormSignature>& forms_in_query, in CheckCacheForQueryRequest() argument
934 if (it.first == forms_in_query) { in CheckCacheForQueryRequest()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/autofill/core/browser/
H A Dautofill_download_manager.h166 void CacheQueryRequest(const std::vector<std::string>& forms_in_query,
170 bool CheckCacheForQueryRequest(const std::vector<std::string>& forms_in_query,
174 const std::vector<std::string>& forms_in_query) const;
H A Dautofill_download_manager.cc926 const std::vector<std::string>& forms_in_query, in CacheQueryRequest() argument
928 std::string signature = GetCombinedSignature(forms_in_query); in CacheQueryRequest()
947 const std::vector<std::string>& forms_in_query, in CheckCacheForQueryRequest() argument
949 std::string signature = GetCombinedSignature(forms_in_query); in CheckCacheForQueryRequest()
961 const std::vector<std::string>& forms_in_query) const { in GetCombinedSignature()
962 size_t total_size = forms_in_query.size(); in GetCombinedSignature()
963 for (size_t i = 0; i < forms_in_query.size(); ++i) in GetCombinedSignature()
964 total_size += forms_in_query[i].length(); in GetCombinedSignature()
969 for (size_t i = 0; i < forms_in_query.size(); ++i) { in GetCombinedSignature()
972 signature.append(forms_in_query[i]); in GetCombinedSignature()