HomeSort by relevance Sort by last modified time
    Searched refs:EscapeQueryParamValue (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium/net/base/
escape_icu.cc 14 bool EscapeQueryParamValue(const string16& text, const char* codepage,
23 escaped->assign(UTF8ToUTF16(EscapeQueryParamValue(encoded, use_plus)));
escape.h 131 NET_EXPORT std::string EscapeQueryParamValue(const std::string& text, bool use_plus);
132 bool EscapeQueryParamValue(const string16& text, const char* codepage,
135 // A specialized version of EscapeQueryParamValue for string16s that
escape_unittest.cc 96 std::string out = EscapeQueryParamValue(in, true);
113 // EscapeQueryParamValue(..., kCodepageUTF8,)
120 EXPECT_TRUE(EscapeQueryParamValue(test_str, base::kCodepageUTF8, true,
123 EXPECT_TRUE(EscapeQueryParamValue(test_str, base::kCodepageUTF8, false,
escape.cc 201 std::string EscapeQueryParamValue(const std::string& text, bool use_plus) {
  /external/chromium_org/net/base/
url_util.cc 21 query += (EscapeQueryParamValue(name, true) + "=" +
22 EscapeQueryParamValue(value, true));
32 std::string param_name = EscapeQueryParamValue(name, true);
33 std::string param_value = EscapeQueryParamValue(value, true);
escape.h 23 NET_EXPORT std::string EscapeQueryParamValue(const std::string& text,
escape_unittest.cc 71 EXPECT_EQ(value.output, EscapeQueryParamValue(value.input, true));
81 EXPECT_EQ(value.output, EscapeQueryParamValue(value.input, false));
93 std::string out = EscapeQueryParamValue(in, true);
  /external/chromium_org/chrome/browser/safe_browsing/
ping_manager.cc 131 net::EscapeQueryParamValue(malicious_url.spec(), true).c_str(),
132 net::EscapeQueryParamValue(page_url.spec(), true).c_str(),
133 net::EscapeQueryParamValue(referrer_url.spec(), true).c_str(),
146 net::EscapeQueryParamValue(api_key, true).c_str());
ping_manager_unittest.cc 30 net::EscapeQueryParamValue(key, true).c_str());
protocol_manager_helper.cc 49 net::EscapeQueryParamValue(api_key, true).c_str());
  /external/chromium_org/content/renderer/android/
address_detector.cc 32 net::EscapeQueryParamValue(content_text, true));
email_detector.cc 42 net::EscapeQueryParamValue(content_text, true));
phone_number_detector.cc 54 net::EscapeQueryParamValue(content_text, true));
  /external/chromium_org/chrome/browser/extensions/updater/
manifest_fetch_data.cc 86 parts.push_back("ap=" + net::EscapeQueryParamValue(update_url_data, true));
120 parts.push_back("ping=" + net::EscapeQueryParamValue(ping_value, true));
124 extra += "x=" + net::EscapeQueryParamValue(JoinString(parts, '&'), true);
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler.cc 40 EscapeQueryParamValue(url.spec(), true));
  /external/chromium_org/content/browser/speech/
google_one_shot_remote_engine.cc 186 parts.push_back("lang=" + net::EscapeQueryParamValue(lang_param, true));
190 parts.push_back("lm=" + net::EscapeQueryParamValue(config_.grammars[0].url,
195 parts.push_back("xhw=" + net::EscapeQueryParamValue(config_.hardware_info,
201 parts.push_back("key=" + net::EscapeQueryParamValue(api_key, true));
google_streaming_remote_engine.cc 319 "key=" + net::EscapeQueryParamValue(GetAPIKey(), true));
338 net::EscapeQueryParamValue(GetAPIKey(), true));
342 "lang=" + net::EscapeQueryParamValue(GetAcceptedLanguages(), true));
354 "xhw=" + net::EscapeQueryParamValue(config_.hardware_info, true));
  /external/chromium_org/chrome/browser/
chrome_process_finder_win.cc 91 std::string EscapeQueryParamValue(const std::string& text, bool use_plus) {
126 std::string query = EscapeQueryParamValue(UTF16ToUTF8(terms), true);
  /external/chromium_org/chrome/browser/translate/
translate_script.cc 105 argument += net::EscapeQueryParamValue(api_key, true);
  /external/chromium_org/chrome/browser/printing/cloud_print/
cloud_print_url.cc 39 url.append(net::EscapeQueryParamValue(kDefaultCloudPrintServiceURL, false));
  /external/chromium_org/chrome/common/custom_handlers/
protocol_handler.cc 62 net::EscapeQueryParamValue(url.spec(), true));
  /external/chromium_org/chrome/common/extensions/
extension_constants.cc 49 net::EscapeQueryParamValue(query, false));
  /external/chromium_org/chrome/browser/signin/
signin_promo.cc 207 net::EscapeQueryParamValue(
  /external/chromium/chrome/browser/safe_browsing/
protocol_manager.cc 794 EscapeQueryParamValue(malicious_url.spec(), true).c_str(),
795 EscapeQueryParamValue(page_url.spec(), true).c_str(),
796 EscapeQueryParamValue(referrer_url.spec(), true).c_str(),
  /external/chromium/chrome/browser/policy/
device_management_backend_impl.cc 105 result += EscapeQueryParamValue(entry->first, true);
107 result += EscapeQueryParamValue(entry->second, true);

Completed in 496 milliseconds

1 2