HomeSort by relevance Sort by last modified time
    Searched refs:desired_tld (Results 1 - 12 of 12) sorted by null

  /external/chromium/chrome/browser/autocomplete/
autocomplete_classifier.h 26 // determines how it should be interpreted. |desired_tld| is the user's
27 // desired TLD, if any; see AutocompleteInput::desired_tld().
38 const string16& desired_tld,
autocomplete_classifier.cc 21 const string16& desired_tld,
27 controller_->Start(text, desired_tld, true, false, allow_exact_keyword_match,
autocomplete.h 195 // treat as an URL by specifying a desired_tld
220 const string16& desired_tld,
239 const string16& desired_tld,
249 const string16& desired_tld,
279 const string16& desired_tld() const { return desired_tld_; } function in class:AutocompleteInput
624 // See AutocompleteInput::desired_tld() for meaning of |desired_tld|.
651 const string16& desired_tld,
    [all...]
autocomplete.cc 59 const string16& desired_tld,
65 desired_tld_(desired_tld),
77 type_ = Parse(text_, desired_tld, &parts_, &scheme_, &canonicalized_url);
120 const string16& desired_tld,
146 UTF16ToUTF8(desired_tld));
204 Type http_type = Parse(http_scheme_prefix + text, desired_tld,
264 // Try to append the desired_tld.
265 if (!desired_tld.empty()) {
269 host_with_tld += desired_tld;
289 UTF16ToUTF8(desired_tld))) {
    [all...]
history_url_provider_unittest.cc 125 const string16& desired_tld,
188 const string16& desired_tld,
192 AutocompleteInput input(text, desired_tld, prevent_inline_autocomplete,
200 << "\nTLD: \"" << desired_tld << "\""; local
history_url_provider.cc 375 if (input.desired_tld().empty())
609 // NOTE: This purposefully doesn't take input.desired_tld() into account; if
    [all...]
  /external/chromium/chrome/browser/net/
url_fixer_upper.h 44 // If |desired_tld| is non-empty, it represents the TLD the user wishes to
47 // |desired_tld| to the domain and prepend "www." (unless it, or a scheme,
50 GURL FixupURL(const std::string& text, const std::string& desired_tld);
url_fixer_upper.cc 185 // |desired_tld| to the domain, and prepends "www." unless it's already present.
186 static void AddDesiredTLD(const std::string& desired_tld,
188 if (desired_tld.empty() || domain->empty())
208 DCHECK_NE(desired_tld[0], '.');
211 domain->append(desired_tld);
247 const std::string& desired_tld,
268 AddDesiredTLD(desired_tld, &domain);
455 const std::string& desired_tld) {
473 desired_tld).possibly_invalid_spec());
496 FixupHost(trimmed, parts.host, parts.scheme.is_valid(), desired_tld, &url)
    [all...]
url_fixer_upper_unittest.cc 210 const std::string desired_tld; member in struct:fixup_case
275 value.desired_tld).possibly_invalid_spec());
302 value.desired_tld).possibly_invalid_spec());
401 file_cases[i].desired_tld).possibly_invalid_spec());
  /external/chromium/net/base/
net_util.h 233 // If |desired_tld| is non-NULL, the host will only be considered invalid if
241 const std::string& desired_tld);
net_util.cc     [all...]
net_util_unittest.cc 381 const char* desired_tld; member in struct:net::__anon4922::CompliantHostCase
    [all...]

Completed in 229 milliseconds