HomeSort by relevance Sort by last modified time
    Searched refs:Parsed (Results 26 - 41 of 41) sorted by null

12

  /external/chromium/googleurl/src/
url_canon_internal.h 381 // point to the spec of the old URL, and all of the Parsed components will
386 // Canonicalizing with the new |source| and |parsed| can then combine URL
391 url_parse::Parsed* parsed);
397 // be appended one after another, with the parsed structure identifying the
413 url_parse::Parsed* parsed);
gurl.cc 49 // |*canonical|, along with the parsing of the canonical spec in |*parsed|.
53 url_parse::Parsed* parsed) {
60 NULL, &output, parsed);
126 const url_parse::Parsed& parsed, bool is_valid)
129 parsed_(parsed) {
131 // For testing purposes, check that the parsed canonical URL is identical to
  /external/webkit/Source/WebCore/platform/
KURL.h 98 // For conversions for other structures that have already parsed and
102 const url_parse::Parsed& parsed, bool isValid);
222 // Getters for the parsed structure and its corresponding 8-bit string.
223 const url_parse::Parsed& parsed() const { return m_url.m_parsed; } function in class:WebCore::KURL
280 // These are operations that aren't faster on a parsed URL.
KURLGoogle.cpp 163 KURLGooglePrivate::KURLGooglePrivate(const url_parse::Parsed& parsed, bool isValid)
166 , m_parsed(parsed)
312 url_parse::Parsed newParsed;
394 const url_parse::Parsed& parsed, bool isValid)
395 : m_url(parsed, isValid)
399 if (parsed.ref.is_nonempty())
879 // initialized) string and parsed structure would be a waste of time.
904 return m_url.m_parsed.CountCharactersBefore(url_parse::Parsed::HOST, false)
    [all...]
  /external/chromium/chrome/browser/autocomplete/
history_provider.cc 85 const url_parse::Parsed& parts =
autocomplete.cc 121 url_parse::Parsed* parts,
138 url_parse::Parsed local_parts;
201 url_parse::Parsed http_parts;
212 // Manually re-jigger the parsed parts to match |text| (without the
411 url_parse::Parsed parts;
425 url_parse::Parsed real_parts;
474 parts_ = url_parse::Parsed();
    [all...]
search_provider.cc 393 const url_parse::Parsed& parts = input_.parts();
    [all...]
  /external/chromium/chrome/browser/ui/webui/
chrome_url_data_manager_backend.cc 57 const url_parse::Parsed& parsed = url.parsed_for_possibly_invalid_spec(); local
59 int offset = parsed.CountCharactersBefore(url_parse::Parsed::PATH, false) + 1;
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_util.cc 290 url_parse::Parsed parsed; local
292 url_unescaped_str.length(), &parsed);
295 const std::string host = (parsed.host.len > 0) ? url_unescaped_str.substr(
296 parsed.host.begin, parsed.host.len) : "";
306 std::string path = (parsed.path.len > 0) ? url_unescaped_str.substr(
307 parsed.path.begin, parsed.path.len): "";
319 url_parse::Parsed temp_parsed
    [all...]
  /external/chromium/net/base/
net_util.cc 826 // Adjusts all the components of |parsed| by |delta|, except for the scheme.
827 void AdjustComponents(int delta, url_parse::Parsed* parsed) {
828 AdjustComponent(delta, &(parsed->username));
829 AdjustComponent(delta, &(parsed->password));
830 AdjustComponent(delta, &(parsed->host));
831 AdjustComponent(delta, &(parsed->port));
832 AdjustComponent(delta, &(parsed->path));
833 AdjustComponent(delta, &(parsed->query));
834 AdjustComponent(delta, &(parsed->ref))
984 const url_parse::Parsed& parsed = url.parsed_for_possibly_invalid_spec(); local
    [all...]
net_util_unittest.cc 1649 url_parse::Parsed parsed; local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
PlatformBridge.cpp 931 url_parse::Parsed parsed; local
932 if (!url_util::Canonicalize(url, length, 0, &buffer, &parsed))
945 url_parse::Parsed parsed; local
    [all...]
  /external/chromium/chrome/browser/net/
url_fixer_upper_unittest.cc 162 url_parse::Parsed parts;
  /external/chromium/chrome/browser/prerender/
prerender_manager.cc 66 url_parse::Parsed parsed; local
68 &parsed);
69 url_parse::Component query = parsed.query;
  /external/llvm/lib/AsmParser/
LLParser.cpp 72 // Okay, we are referencing an already-parsed function, resolve them now.
562 /// Everything through visibility has already been parsed.
642 /// Everything through visibility has been parsed already.
707 // Set the parsed properties on the global.
    [all...]
  /external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
markdown.php 1873 $parsed = ""; # Parsed text that will be returned. variable
2071 $parsed = ""; # Parsed text that will be returned. variable
    [all...]

Completed in 402 milliseconds

12