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

  /external/chromium/chrome/browser/chromeos/login/
authenticator_unittest.cc 13 EXPECT_EQ(lower_case, Authenticator::Canonicalize(lower_case));
17 EXPECT_EQ(Authenticator::Canonicalize("user@what.com"),
18 Authenticator::Canonicalize("UsEr@what.com"));
22 EXPECT_EQ(Authenticator::Canonicalize("user@what.com"),
23 Authenticator::Canonicalize("UsEr@what.COM"));
27 EXPECT_NE(Authenticator::Canonicalize("u.ser@what.com"),
28 Authenticator::Canonicalize("UsEr@what.com"));
32 EXPECT_EQ(Authenticator::Canonicalize("u.ser@what.com"),
33 Authenticator::Canonicalize("U.sEr@what.com"));
37 EXPECT_EQ(Authenticator::Canonicalize("us.er@gmail.com")
    [all...]
authenticator.cc 27 std::string Authenticator::Canonicalize(const std::string& email_address) {
authenticator.h 94 static std::string Canonicalize(const std::string& email_address);
user_image_downloader.cc 161 if (Authenticator::Canonicalize(email) == username_)
parallel_authenticator.cc 73 std::string canonicalized = Authenticator::Canonicalize(username);
101 new AuthAttemptState(Authenticator::Canonicalize(username),
252 new AuthAttemptState(Authenticator::Canonicalize(username),
google_authenticator.cc 131 username_.assign(Canonicalize(username));
147 username_.assign(Canonicalize(username));
signed_settings.cc 280 return new CheckWhitelistOp(Authenticator::Canonicalize(email), d);
289 return new WhitelistOp(Authenticator::Canonicalize(email),
  /external/chromium/googleurl/src/
url_util.h 132 // As with the url_canon::Canonicalize* functions, the charset converter can
138 GURL_API bool Canonicalize(const char* spec,
143 GURL_API bool Canonicalize(const char16* spec,
154 // will produce a canonical version of that URL. See Canonicalize() for more
url_util.cc 125 // Before extracting scheme, canonicalize the URL to remove any whitespace.
181 // This is the parsed version of the input URL, we have to canonicalize it
247 // Relative, resolve and canonicalize.
256 // Not relative, canonicalize the input.
283 // Canonicalize the new scheme so it is 8-bit and can be concatenated with
413 bool Canonicalize(const char* spec,
422 bool Canonicalize(const char16* spec,
url_util_unittest.cc 69 // When there is a whitespace char in scheme, it should canonicalize the url
121 url_util::Canonicalize(base_url, strlen(base_url), NULL,
gurl.cc 58 bool success = url_util::Canonicalize(
133 // and we can't always canonicalize then reproducabely.
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
accounts_options_handler.cc 85 users_settings()->WhitelistUser(Authenticator::Canonicalize(email));
94 users_settings()->UnwhitelistUser(Authenticator::Canonicalize(email));
  /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 960 const bool Canonicalize;
963 Factory(bool canonicalize = true)
964 : Canonicalize(canonicalize) {}
966 Factory(BumpPtrAllocator& Alloc, bool canonicalize = true)
967 : F(Alloc), Canonicalize(canonicalize) {}
983 return ImmutableSet(Canonicalize ? F.getCanonicalTree(NewT) : NewT);
995 return ImmutableSet(Canonicalize ? F.getCanonicalTree(NewT) : NewT);
    [all...]
  /external/v8/src/
interpreter-irregexp.cc 43 typedef unibrow::Mapping<unibrow::Ecma262Canonicalize> Canonicalize;
45 static bool BackRefMatchesNoCase(Canonicalize* interp_canonicalize,
66 static bool BackRefMatchesNoCase(Canonicalize* interp_canonicalize,
hydrogen.h 222 void Canonicalize();
    [all...]
jsregexp.cc     [all...]
hydrogen-instructions.h 555 virtual HValue* Canonicalize() { return this; }
    [all...]
jsregexp.h 301 static void Canonicalize(ZoneList<CharacterRange>* ranges);
    [all...]
ast.h     [all...]
hydrogen.cc 640 void HGraph::Canonicalize() {
642 HPhase phase("Canonicalize", this);
646 HValue* value = instr->Canonicalize();
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
PlatformBridge.cpp 932 if (!url_util::Canonicalize(url, length, 0, &buffer, &parsed))
    [all...]
  /external/v8/test/cctest/
test-regexp.cc 1414 static uc32 canonicalize(uc32 c) { function
    [all...]

Completed in 1158 milliseconds