HomeSort by relevance Sort by last modified time
    Searched refs:Canonicalize (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/ppapi/shared_impl/
ppb_url_util_shared.h 25 static PP_Var Canonicalize(PP_Var url, PP_URLComponents_Dev* components);
ppb_url_util_shared.cc 46 PP_Var PPB_URLUtil_Shared::Canonicalize(PP_Var url,
109 PP_Var result = Canonicalize(url, components);
  /external/chromium_org/ppapi/cpp/dev/
url_util_dev.h 24 Var Canonicalize(const Var& url,
url_util_dev.cc 42 Var URLUtil_Dev::Canonicalize(const Var& url,
46 get_interface<PPB_URLUtil_Dev_0_7>()->Canonicalize(url.pp_var(),
51 get_interface<PPB_URLUtil_Dev_0_6>()->Canonicalize(url.pp_var(),
  /external/chromium_org/ppapi/tests/
test_url_util.cc 24 RUN_TEST(Canonicalize, filter);
35 // Test no canonicalize output.
36 pp::Var result = util_->Canonicalize("http://Google.com");
41 result = util_->Canonicalize(
58 result = util_->Canonicalize("http://google.com/", &c);
  /external/chromium_org/ppapi/c/dev/
ppb_url_util_dev.h 91 struct PP_Var (*Canonicalize)(struct PP_Var url,
183 struct PP_Var (*Canonicalize)(struct PP_Var url,
  /external/chromium_org/ppapi/thunk/
ppb_url_util_thunk.cc 65 &PPB_URLUtil_Shared::Canonicalize,
76 &PPB_URLUtil_Shared::Canonicalize,
  /external/chromium_org/chrome/common/extensions/docs/server2/
path_canonicalizer_test.py 56 # They must canonicalize to the closest match.
145 self.assertEqual(to, self._path_canonicalizer.Canonicalize(from_))
150 to, self._path_canonicalizer.Canonicalize(from_ + ext))
path_canonicalizer.py 83 def Canonicalize(self, path):
  /external/chromium_org/ppapi/api/dev/
ppb_url_util_dev.idl 68 PP_Var Canonicalize([in] PP_Var url, [out] PP_URLComponents_Dev components);
  /external/chromium_org/url/
url_util.h 107 // As with the Canonicalize* functions, the charset converter can
113 URL_EXPORT bool Canonicalize(const char* spec,
119 URL_EXPORT bool Canonicalize(const base::char16* spec,
131 // will produce a canonical version of that URL. See Canonicalize() for more
url_util.cc 100 // Before extracting scheme, canonicalize the URL to remove any whitespace.
157 // This is the parsed version of the input URL, we have to canonicalize it
252 // Relative, resolve and canonicalize.
260 // Not relative, canonicalize the input.
287 // Canonicalize the new scheme so it is 8-bit and can be concatenated with
418 bool Canonicalize(const char* spec,
428 bool Canonicalize(const base::char16* spec,
url_util_unittest.cc 46 // When there is a whitespace char in scheme, it should canonicalize the url
90 Canonicalize(base_url, strlen(base_url), true, NULL, &original,
gurl.cc 112 is_valid_ = url::Canonicalize(
133 // and we can't always canonicalize then reproducabely.
  /external/chromium_org/v8/src/
hydrogen-canonicalize.cc 5 #include "src/hydrogen-canonicalize.h"
46 // Now canonicalize each instruction.
49 HValue* value = instr->Canonicalize();
interpreter-irregexp.cc 21 typedef unibrow::Mapping<unibrow::Ecma262Canonicalize> Canonicalize;
23 static bool BackRefMatchesNoCase(Canonicalize* interp_canonicalize,
44 static bool BackRefMatchesNoCase(Canonicalize* interp_canonicalize,
hydrogen-instructions.cc     [all...]
hydrogen-instructions.h 756 virtual HValue* Canonicalize() { return this; }
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableMap.h 99 const bool Canonicalize;
102 Factory(bool canonicalize = true)
103 : Canonicalize(canonicalize) {}
105 Factory(BumpPtrAllocator& Alloc, bool canonicalize = true)
106 : F(Alloc), Canonicalize(canonicalize) {}
112 return ImmutableMap(Canonicalize ? F.getCanonicalTree(T): T);
117 return ImmutableMap(Canonicalize ? F.getCanonicalTree(T): T);
ImmutableSet.h 972 const bool Canonicalize;
975 Factory(bool canonicalize = true)
976 : Canonicalize(canonicalize) {}
978 Factory(BumpPtrAllocator& Alloc, bool canonicalize = true)
979 : F(Alloc), Canonicalize(canonicalize) {}
995 return ImmutableSet(Canonicalize ? F.getCanonicalTree(NewT) : NewT);
1007 return ImmutableSet(Canonicalize ? F.getCanonicalTree(NewT) : NewT);
    [all...]
  /external/chromium_org/chrome/common/
content_settings_pattern.h 236 static bool Canonicalize(PatternParts* parts);
content_settings_pattern.cc 152 if (!Canonicalize(&parts_))
166 if (!Canonicalize(&parts))
177 bool ContentSettingsPattern::Builder::Canonicalize(PatternParts* parts) {
178 // Canonicalize the scheme part.
189 // Canonicalize the host part.
  /external/chromium_org/tools/win/
copy-installer.bat 89 REM Canonicalize the first argument, returning it in RET.
  /external/chromium_org/v8/test/cctest/
test-regexp.cc 1476 static uc32 canonicalize(uc32 c) { function
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 269 void Canonicalize();
363 Canonicalize();
381 void Formula::Canonicalize() {
715 // All pointers have the same requirements, so canonicalize them to an
    [all...]

Completed in 1014 milliseconds

1 2