OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AreEmailsSame
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/google_apis/gaia/
gaia_auth_util_unittest.cc
88
TEST(GaiaAuthUtilTest,
AreEmailsSame
) {
89
EXPECT_TRUE(
AreEmailsSame
("foo", "foo"));
90
EXPECT_TRUE(
AreEmailsSame
("foo", "foo@gmail.com"));
91
EXPECT_TRUE(
AreEmailsSame
("foo@gmail.com", "Foo@Gmail.com"));
92
EXPECT_FALSE(
AreEmailsSame
("foo@gmail.com", "foo@othermail.com"));
93
EXPECT_FALSE(
AreEmailsSame
("user@gmail.com", "foo@gmail.com"));
gaia_auth_util.h
30
bool
AreEmailsSame
(const std::string& email1, const std::string& email2);
gaia_auth_util.cc
52
bool
AreEmailsSame
(const std::string& email1, const std::string& email2) {
/external/chromium_org/chrome/browser/managed_mode/
custodian_profile_downloader_service.cc
23
if (gaia::
AreEmailsSame
(last_downloaded_profile_email_, current_email)) {
/external/chromium_org/chrome/browser/signin/
signin_manager.cc
182
gaia::
AreEmailsSame
(username, GetAuthenticatedUsername()));
218
gaia::
AreEmailsSame
(username, GetAuthenticatedUsername()));
575
!gaia::
AreEmailsSame
(display_email_iter->second,
/external/chromium_org/chrome/browser/ui/sync/
one_click_signin_helper.cc
629
const bool same_email = gaia::
AreEmailsSame
(current_email, email);
[
all
...]
Completed in 837 milliseconds