Home
last modified time | relevance | path

Searched refs:query_str (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/components/autofill/content/browser/wallet/
Dwallet_service_url.cc177 std::string query_str = url.query(); in IsSignInContinueUrl() local
178 url::Component query(0, query_str.length()); in IsSignInContinueUrl()
181 while (url::ExtractQueryKeyValue(query_str.c_str(), &query, &key, &value)) { in IsSignInContinueUrl()
183 query_str.substr(key.begin, key.len) == kUserIndexKey) { in IsSignInContinueUrl()
184 base::StringToSizeT(query_str.substr(value.begin, value.len), user_index); in IsSignInContinueUrl()
/external/chromium_org/chrome/browser/ui/toolbar/
Dtoolbar_model_impl.cc133 const std::string& query_str(google_util::HasGoogleSearchQueryParam( in GetCorpusNameForMobile() local
135 url::Component query(0, query_str.length()), key, value; in GetCorpusNameForMobile()
137 while (url::ExtractQueryKeyValue(query_str.c_str(), &query, &key, &value)) { in GetCorpusNameForMobile()
138 if (key.is_nonempty() && query_str.substr(key.begin, key.len) == kChipKey) { in GetCorpusNameForMobile()
140 query_str.substr(value.begin, value.len), in GetCorpusNameForMobile()
/external/chromium_org/chrome/browser/extensions/activity_log/
Dfullstream_ui_policy.cc162 std::string query_str = base::StringPrintf( in DoReadFilteredData() local
168 sql::Statement query(db->GetUniqueStatement(query_str.c_str())); in DoReadFilteredData()
Dcounting_policy.cc461 std::string query_str = base::StringPrintf( in DoReadFilteredData() local
468 sql::Statement query(db->GetUniqueStatement(query_str.c_str())); in DoReadFilteredData()
/external/chromium_org/chrome/browser/search_engines/
Dtemplate_url.cc366 std::string query_str = JoinString(query_params, "&"); in ReplaceSearchTerms() local
367 replacements.SetQueryStr(query_str); in ReplaceSearchTerms()