HomeSort by relevance Sort by last modified time
    Searched refs:url_parse (Results 26 - 50 of 171) sorted by null

12 3 4 5 6 7

  /external/chromium/googleurl/src/
url_canon_stdstring.h 99 url_parse::Component(0, static_cast<int>(s.length())));
103 url_parse::Component(0, static_cast<int>(s.length())));
107 url_parse::Component(0, static_cast<int>(s.length())));
111 url_parse::Component(0, static_cast<int>(s.length())));
115 url_parse::Component(0, static_cast<int>(s.length())));
119 url_parse::Component(0, static_cast<int>(s.length())));
123 url_parse::Component(0, static_cast<int>(s.length())));
127 url_parse::Component(0, static_cast<int>(s.length())));
url_util.cc 95 const url_parse::Component& component,
107 bool DoIsStandard(const CHAR* spec, const url_parse::Component& scheme) {
124 url_parse::Component* found_scheme) {
132 url_parse::Component our_scheme;
133 if (!url_parse::ExtractScheme(spec, spec_len, &our_scheme)) {
136 *found_scheme = url_parse::Component();
148 url_parse::Parsed* output_parsed) {
156 url_parse::Parsed parsed_input;
168 if (url_parse::DoesBeginUNCPath(spec, 0, spec_len, false) ||
169 url_parse::DoesBeginWindowsDriveSpec(spec, 0, spec_len))
    [all...]
url_canon_stdurl.cc 42 const url_parse::Parsed& parsed,
45 url_parse::Parsed* new_parsed) {
100 new_parsed->path = url_parse::Component(output->length(), 1);
123 int default_port = url_parse::PORT_UNSPECIFIED;
153 const url_parse::Parsed& parsed,
156 url_parse::Parsed* new_parsed) {
164 const url_parse::Parsed& parsed,
167 url_parse::Parsed* new_parsed) {
183 const url_parse::Parsed& base_parsed,
187 url_parse::Parsed* new_parsed)
    [all...]
url_canon_query.cc 70 bool IsAllASCII(const CHAR* spec, const url_parse::Component& query) {
97 const url_parse::Component& query,
111 const url_parse::Component& query,
119 const url_parse::Component& query,
144 const url_parse::Component& query,
147 url_parse::Component* out_query) {
149 *out_query = url_parse::Component();
164 const url_parse::Component& query,
167 url_parse::Component* out_query) {
173 const url_parse::Component& query
    [all...]
url_canon_ip.cc 59 const url_parse::Component& host,
60 url_parse::Component components[4]) {
72 url_parse::Component(cur_component_begin, component_len);
104 components[cur_component++] = url_parse::Component();
121 const url_parse::Component& component,
189 url_parse::Component* out_host) {
207 const url_parse::Component& host,
211 url_parse::Component components[4];
264 const url_parse::Component& host,
331 url_parse::Component hex_components[8]
    [all...]
url_util_unittest.cc 32 #include "googleurl/src/url_parse.h"
38 url_parse::Component found_scheme;
46 EXPECT_TRUE(found_scheme == url_parse::Component(0, 4));
51 EXPECT_TRUE(found_scheme == url_parse::Component(0, 4));
57 EXPECT_TRUE(found_scheme == url_parse::Component());
63 EXPECT_TRUE(found_scheme == url_parse::Component(0, 0));
67 EXPECT_TRUE(found_scheme == url_parse::Component());
75 EXPECT_TRUE(found_scheme == url_parse::Component(1, 10));
83 EXPECT_TRUE(found_scheme == url_parse::Component(1, 11));
87 url_parse::Parsed parsed
    [all...]
url_parse_unittest.cc 31 #include "googleurl/src/url_parse.h"
107 const url_parse::Component& component) {
127 void ExpectInvalidComponent(const url_parse::Component& component) {
158 url_parse::Parsed parsed;
159 url_parse::ParseStandardURL(length_cases[i], true_length, &parsed);
166 using namespace url_parse;
219 url_parse::Parsed parsed;
221 url_parse::ParseFileURL(count_cases[i].url, length, &parsed);
223 url_parse::ParseStandardURL(count_cases[i].url, length, &parsed);
332 url_parse::Parsed parsed
    [all...]
url_canon_host.cc 103 void ScanHostname(const CHAR* spec, const url_parse::Component& host,
315 const url_parse::Component& host,
321 host_info->out_host = url_parse::Component();
350 url_parse::MakeRange(output_begin, output->length()),
362 host_info->out_host = url_parse::MakeRange(output_begin, output->length());
368 const url_parse::Component& host,
370 url_parse::Component* out_host) {
378 const url_parse::Component& host,
380 url_parse::Component* out_host) {
388 const url_parse::Component& host
    [all...]
url_canon_path.cc 134 if (url_parse::IsURLSlash(spec[after_dot])) {
148 if (url_parse::IsURLSlash(spec[after_second_dot])) {
206 const url_parse::Component& path,
324 const url_parse::Component& path,
326 url_parse::Component* out_path) {
335 if (!url_parse::IsURLSlash(spec[path.begin]))
343 *out_path = url_parse::Component();
351 const url_parse::Component& path,
353 url_parse::Component* out_path) {
358 const url_parse::Component& path
    [all...]
  /external/chromium_org/remoting/host/setup/
oauth_helper.cc 10 #include "url/url_parse.h"
15 const url_parse::Component component) {
56 url_parse::Parsed url_parsed;
58 url_parse::Parsed redirect_url_parsed;
69 url_parse::Component query = url_parsed.query;
70 url_parse::Component key;
71 url_parse::Component value;
  /external/chromium_org/url/
url_canon_pathurl.cc 21 const url_parse::Component& component,
24 url_parse::Component* new_component) {
51 const url_parse::Parsed& parsed,
53 url_parse::Parsed* new_parsed) {
80 const url_parse::Parsed& parsed,
82 url_parse::Parsed* new_parsed) {
89 const url_parse::Parsed& parsed,
91 url_parse::Parsed* new_parsed) {
97 const url_parse::Parsed& base_parsed,
100 url_parse::Parsed* new_parsed)
    [all...]
url_canon_stdurl.cc 17 const url_parse::Parsed& parsed,
20 url_parse::Parsed* new_parsed) {
75 new_parsed->path = url_parse::Component(output->length(), 1);
98 int default_port = url_parse::PORT_UNSPECIFIED;
128 const url_parse::Parsed& parsed,
131 url_parse::Parsed* new_parsed) {
139 const url_parse::Parsed& parsed,
142 url_parse::Parsed* new_parsed) {
158 const url_parse::Parsed& base_parsed,
162 url_parse::Parsed* new_parsed)
    [all...]
url_canon_query.cc 45 bool IsAllASCII(const CHAR* spec, const url_parse::Component& query) {
72 const url_parse::Component& query,
86 const url_parse::Component& query,
94 const url_parse::Component& query,
119 const url_parse::Component& query,
122 url_parse::Component* out_query) {
124 *out_query = url_parse::Component();
139 const url_parse::Component& query,
142 url_parse::Component* out_query) {
148 const url_parse::Component& query
    [all...]
url_canon_ip.cc 34 const url_parse::Component& host,
35 url_parse::Component components[4]) {
47 url_parse::Component(cur_component_begin, component_len);
79 components[cur_component++] = url_parse::Component();
96 const url_parse::Component& component,
162 const url_parse::Component& host,
166 url_parse::Component components[4];
230 const url_parse::Component& host,
298 url_parse::Component hex_components[8];
308 url_parse::Component ipv4_component
    [all...]
url_util_unittest.cc 8 #include "url/url_parse.h"
13 url_parse::Component found_scheme;
21 EXPECT_TRUE(found_scheme == url_parse::Component(0, 4));
26 EXPECT_TRUE(found_scheme == url_parse::Component(0, 4));
32 EXPECT_TRUE(found_scheme == url_parse::Component());
38 EXPECT_TRUE(found_scheme == url_parse::Component(0, 0));
42 EXPECT_TRUE(found_scheme == url_parse::Component());
50 EXPECT_TRUE(found_scheme == url_parse::Component(1, 10));
58 EXPECT_TRUE(found_scheme == url_parse::Component(1, 11));
62 url_parse::Parsed parsed
    [all...]
url_util.cc 73 const url_parse::Component& component,
85 bool DoIsStandard(const CHAR* spec, const url_parse::Component& scheme) {
102 url_parse::Component* found_scheme) {
110 url_parse::Component our_scheme;
111 if (!url_parse::ExtractScheme(spec, spec_len, &our_scheme)) {
114 *found_scheme = url_parse::Component();
127 url_parse::Parsed* output_parsed) {
135 url_parse::Parsed parsed_input;
147 if (url_parse::DoesBeginUNCPath(spec, 0, spec_len, false) ||
148 url_parse::DoesBeginWindowsDriveSpec(spec, 0, spec_len))
    [all...]
url_canon_host.cc 78 void ScanHostname(const CHAR* spec, const url_parse::Component& host,
290 const url_parse::Component& host,
296 host_info->out_host = url_parse::Component();
325 url_parse::MakeRange(output_begin, output->length()),
337 host_info->out_host = url_parse::MakeRange(output_begin, output->length());
343 const url_parse::Component& host,
345 url_parse::Component* out_host) {
353 const url_parse::Component& host,
355 url_parse::Component* out_host) {
363 const url_parse::Component& host
    [all...]
  /external/chromium_org/net/base/
url_util.h 12 #include "url/url_parse.h"
64 url_parse::Component query_;
66 url_parse::Component key_;
67 url_parse::Component value_;
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_input.h 14 #include "url/url_parse.h"
162 url_parse::Parsed* parts,
171 url_parse::Component* scheme,
172 url_parse::Component* host);
185 static int NumNonHostComponents(const url_parse::Parsed& parts);
202 const url_parse::Parsed& parts);
217 const url_parse::Parsed& parts() const { return parts_; }
256 url_parse::Parsed parts_;
  /external/chromium_org/chrome/common/net/
url_fixer_upper.cc 21 #include "url/url_parse.h"
29 // SegmentURL. A url_parse::Parsed object keeps track of a bunch of indices into
33 url_parse::Component UTF8ComponentToUTF16Component(
35 const url_parse::Component& component_utf8) {
37 return url_parse::Component();
46 url_parse::Component component_16(before_component_string_16.length(),
52 const url_parse::Parsed& parts_utf8,
53 url_parse::Parsed* parts) {
223 const url_parse::Component& part,
235 const url_parse::Component& part
    [all...]
  /external/chromium/chrome/common/
content_settings_helper.cc 15 std::string port_component(origin.IntPort() != url_parse::PORT_UNSPECIFIED ?
  /external/chromium/chrome/browser/net/
url_fixer_upper.cc 18 #include "googleurl/src/url_parse.h"
29 // SegmentURL. A url_parse::Parsed object keeps track of a bunch of indices into
33 url_parse::Component UTF8ComponentToUTF16Component(
35 const url_parse::Component& component_utf8) {
37 return url_parse::Component();
45 url_parse::Component component_16(before_component_string_16.length(),
51 const url_parse::Parsed& parts_utf8,
52 url_parse::Parsed* parts) {
222 const url_parse::Component& part,
234 const url_parse::Component& part
    [all...]
  /external/chromium_org/chrome/browser/prerender/
prerender_util.cc 15 #include "url/url_parse.h"
98 url_parse::Parsed parsed;
99 url_parse::ParseStandardURL(url.spec().c_str(), url.spec().length(),
101 url_parse::Component query = parsed.query;
102 url_parse::Component key, value;
103 while (url_parse::ExtractQueryKeyValue(url.spec().c_str(), &query, &key,
124 url_parse::Parsed parsed;
125 url_parse::ParseStandardURL(url.spec().c_str(), url.spec().length(),
127 url_parse::Component query = parsed.query;
128 url_parse::Component key, value
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
KURL.cpp 104 virtual void ConvertFromUTF16(const url_parse::UTF16Char* input, int inputLength, url_canon::CanonOutput* output)
215 KURL::KURL(const AtomicString& canonicalString, const url_parse::Parsed& parsed, bool isValid)
310 url_parse::Component path = m_parsed.path;
314 url_parse::Component file;
316 url_parse::ExtractFileName(asURLChar8Subtle(m_string), path, &file);
318 url_parse::ExtractFileName(m_string.characters16(), path, &file);
348 url_parse::ParsePort(asURLChar8Subtle(m_string), m_parsed.port) :
349 url_parse::ParsePort(m_string.characters16(), m_parsed.port);
350 ASSERT(port != url_parse::PORT_UNSPECIFIED); // Checked port.len <= 0 before.
352 if (port == url_parse::PORT_INVALID || port > maximumValidPortNumber) // Mimic KURL::port(
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebURL.h 36 #include <url/third_party/mozilla/url_parse.h>
84 const url_parse::Parsed& parsed() const
132 url_parse::Parsed m_parsed;

Completed in 738 milliseconds

12 3 4 5 6 7