/external/chromium/chrome/common/ |
googleurl_dummy.cc | 5 namespace url_util { namespace 7 // A dummy version of the url_util function called by url_constants.cc for all 18 } // namespace url_util
|
url_constants.cc | 8 #include "googleurl/src/url_util.h" 254 url_util::AddStandardScheme(kChromeDevToolsScheme); 255 url_util::AddStandardScheme(kChromeUIScheme); 256 url_util::AddStandardScheme(kExtensionScheme); 257 url_util::AddStandardScheme(kMetadataScheme); 259 url_util::AddStandardScheme(kCrosScheme); 267 url_util::LockStandardSchemes();
|
/external/chromium_org/content/common/ |
url_schemes.cc | 18 #include "url/url_util.h" 23 url_util::AddStandardScheme(scheme.c_str()); 36 url_util::AddStandardScheme(chrome::kChromeDevToolsScheme); 37 url_util::AddStandardScheme(chrome::kChromeUIScheme); 38 url_util::AddStandardScheme(kGuestScheme); 39 url_util::AddStandardScheme(kMetadataScheme); 50 url_util::LockStandardSchemes();
|
/external/chromium_org/url/ |
url_util_unittest.cc | 10 #include "url/url_util.h" 17 EXPECT_TRUE(url_util::FindAndCompareScheme( 19 EXPECT_TRUE(url_util::FindAndCompareScheme( 24 EXPECT_FALSE(url_util::FindAndCompareScheme( 30 EXPECT_FALSE(url_util::FindAndCompareScheme( 36 EXPECT_TRUE(url_util::FindAndCompareScheme( 41 EXPECT_FALSE(url_util::FindAndCompareScheme("", 0, "", &found_scheme)); 47 EXPECT_TRUE(url_util::FindAndCompareScheme( 55 EXPECT_FALSE(url_util::FindAndCompareScheme( 69 url_util::ReplaceComponents(NULL, 0, parsed, replacements, NULL, &output [all...] |
url_util_internal.h | 13 namespace url_util { namespace 28 } // namespace url_util
|
gurl.cc | 18 #include "url/url_util.h" 111 is_valid_ = url_util::Canonicalize( 138 if (!url_util::FindAndCompareScheme(spec_.data(), spec_.length(), 201 if (!url_util::ResolveRelative( 234 if (!url_util::ResolveRelative( 266 result.is_valid_ = url_util::ReplaceComponents( 292 result.is_valid_ = url_util::ReplaceComponents( 348 return url_util::IsStandard(spec_.data(), parsed_.scheme); 354 return url_util::LowerCaseEqualsASCII(spec_.data() + parsed_.scheme.begin, 493 if (!url_util::LowerCaseEqualsASCII(start_pos [all...] |
url_canon_filesystemurl.cc | 11 #include "url/url_util.h" 46 if (url_util::CompareSchemeComponent(spec, inner_parsed->scheme, 47 url_util::kFileScheme)) { 53 } else if (url_util::IsStandard(spec, inner_parsed->scheme)) {
|
url_util.h | 15 namespace url_util { namespace 42 // with any other url_util function. It will assert if the list of standard 203 } // namespace url_util
|
/external/chromium/googleurl/src/ |
url_util_unittest.cc | 34 #include "googleurl/src/url_util.h" 42 EXPECT_TRUE(url_util::FindAndCompareScheme( 44 EXPECT_TRUE(url_util::FindAndCompareScheme( 49 EXPECT_FALSE(url_util::FindAndCompareScheme( 55 EXPECT_FALSE(url_util::FindAndCompareScheme( 61 EXPECT_TRUE(url_util::FindAndCompareScheme( 66 EXPECT_FALSE(url_util::FindAndCompareScheme("", 0, "", &found_scheme)); 72 EXPECT_TRUE(url_util::FindAndCompareScheme( 80 EXPECT_FALSE(url_util::FindAndCompareScheme( 94 url_util::ReplaceComponents(NULL, 0, parsed, replacements, NULL, &output [all...] |
gurl.cc | 43 #include "googleurl/src/url_util.h" 58 bool success = url_util::Canonicalize( 189 if (!url_util::ResolveRelative( 217 if (!url_util::ResolveRelative( 244 result.is_valid_ = url_util::ReplaceComponents( 266 result.is_valid_ = url_util::ReplaceComponents( 315 return url_util::IsStandard(spec_.data(), parsed_.scheme); 321 return url_util::LowerCaseEqualsASCII(spec_.data() + parsed_.scheme.begin, 436 if (!url_util::LowerCaseEqualsASCII(start_pos,
|
url_util.h | 40 namespace url_util { namespace 67 // with any other url_util function. It will assert if the list of standard 220 } // namespace url_util
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
LinkHash.cpp | 37 #include <url/url_util.h> 48 return url_util::ResolveRelative(baseUTF8.data(), baseUTF8.length(), base.parsed(), relativeUTF8.data(), relativeUTF8.length(), 0, buffer, &parsed); 50 return url_util::ResolveRelative(baseUTF8.data(), baseUTF8.length(), base.parsed(), relative.characters16(), relative.length(), 0, buffer, &parsed);
|
/external/chromium_org/android_webview/lib/main/ |
webview_entry_point.cc | 13 #include "url/url_util.h" 48 // Initialize url_util here while we are still single-threaded, in case we use 51 url_util::Initialize();
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
json_manifest.h | 32 JsonManifest(const pp::URLUtil_Dev* url_util, 35 : url_util_(url_util),
|
plugin.h | 249 const pp::URLUtil_Dev* url_util() const { return url_util_; } function in class:plugin::Plugin
|
/external/chromium_org/content/test/ |
webkit_support.cc | 13 #include "url/url_util.h" 76 url_util::Initialize();
|
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/ |
KURL.cpp | 38 #include <url/url_util.h> 638 url_util::DecodeURLEscapeSequences(stringUTF8.data(), stringUTF8.length(), &unescaped); 651 url_util::EncodeURIComponent(utf8.data(), inputLength, &buffer); 663 url_util::IsStandard(asURLChar8Subtle(m_string), m_parsed.scheme) : 664 url_util::IsStandard(m_string.characters16(), m_parsed.scheme); 740 return url_util::FindAndCompareScheme(asURLChar8Subtle(url), url.length(), protocol, 0); 741 return url_util::FindAndCompareScheme(url.characters16(), url.length(), protocol, 0); 772 m_isValid = url_util::ResolveRelative(baseUTF8.data(), baseUTF8.length(), base.m_parsed, relative, relativeLength, charsetConverter, &output, &m_parsed); 876 m_isValid = url_util::ReplaceComponents(utf8.data(), utf8.length(), m_parsed, replacements, 0, &output, &newParsed);
|
/external/chromium/chrome/browser/autocomplete/ |
history_provider.cc | 17 #include "googleurl/src/url_util.h" 96 !url_util::FindAndCompareScheme(UTF16ToUTF8(input_text),
|
/external/chromium_org/chrome/utility/media_galleries/ |
itunes_library_parser.cc | 17 #include "url/url_util.h" 73 url_util::DecodeURLEscapeSequences(url.path().c_str() + 1, // Strip /.
|
/external/chromium_org/content/renderer/pepper/ |
url_request_info_util.cc | 29 #include "url/url_util.h" 193 url_util::FindAndCompareScheme(data.url, "javascript", NULL);
|
/external/chromium_org/url/third_party/mozilla/ |
url_parse.cc | 43 #include "url/url_util.h" 397 if (url_util::CompareSchemeComponent( 398 spec, inner_scheme, url_util::kFileScheme)) { 401 } else if (url_util::CompareSchemeComponent(spec, inner_scheme, 402 url_util::kFileSystemScheme)) { 405 } else if (url_util::IsStandard(spec, inner_scheme)) {
|
/external/chromium_org/chrome/browser/autocomplete/ |
autocomplete_input.cc | 16 #include "url/url_util.h" 507 if (url_util::FindAndCompareScheme(utf8_input, content::kViewSourceScheme, 510 return url_util::FindAndCompareScheme(utf8_input, content::kHttpScheme, NULL);
|
/external/chromium/chrome/common/extensions/ |
url_pattern.cc | 12 #include "googleurl/src/url_util.h" 74 return url_util::IsStandard(scheme.c_str(),
|
/external/chromium_org/chrome/browser/prerender/ |
prerender_util.cc | 16 #include "url/url_util.h" 111 url_util::DecodeURLEscapeSequences(url.spec().c_str() + value.begin,
|
/external/chromium/chrome/browser/net/ |
url_fixer_upper.cc | 19 #include "googleurl/src/url_util.h" 411 !url_util::IsStandard(scheme.c_str(), 482 if (url_util::IsStandard(scheme.c_str(),
|