HomeSort by relevance Sort by last modified time
    Searched full:host_trimmed (Results 1 - 2 of 2) sorted by null

  /external/chromium/net/base/
dns_util.cc 96 std::string host_trimmed = host; local
97 size_t len = host_trimmed.length();
98 if (len > 1 && host_trimmed[len - 1] == '.')
99 host_trimmed.erase(len - 1);
100 return host_trimmed;
  /external/chromium_org/net/base/
dns_util.cc 84 base::StringPiece host_trimmed = host; local
85 size_t len = host_trimmed.length();
86 if (len > 1 && host_trimmed[len - 1] == '.') {
87 host_trimmed.remove_suffix(1);
89 return host_trimmed.as_string();

Completed in 144 milliseconds