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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/components/autofill/core/browser/
autofill_test_utils.h 70 const char* last_name, const char* email, const char* company,
77 const char* last_name, const char* email, const char* company,
  /external/chromium_org/jingle/notifier/listener/
fake_push_client.h 30 const std::string& email, const std::string& token) OVERRIDE;
44 const std::string& email() const;
push_client.h 49 const std::string& email, const std::string& token) = 0;
fake_push_client.cc 29 const std::string& email, const std::string& token) {
30 email_ = email;
63 const std::string& FakePushClient::email() const { function in class:notifier::FakePushClient
  /external/chromium_org/chrome/browser/ui/app_list/search/people/
person.h 46 std::string email; member in struct:app_list::Person
  /external/chromium_org/chrome/browser/ui/ash/multi_user/
multi_user_util.h 21 // Get the user id from an email address.
22 std::string GetUserIDFromEmail(const std::string& email);
  /external/chromium_org/chrome/browser/ui/cocoa/
one_click_signin_dialog_controller.h 25 // open links, |email| is the user's email address that is used for sync,
30 const base::string16& email);
  /external/chromium_org/components/invalidation/
invalidator.h 80 const std::string& email, const std::string& token) = 0;
  /external/chromium_org/google_apis/gcm/engine/
account_mapping.h 42 // Email address of the tracked account.
43 std::string email; member in struct:gcm::AccountMapping
account_mapping_unittest.cc 18 account_mapping.email = "test@example.com";
45 account_mapping.email = "test@gmail.com";
60 EXPECT_EQ("test@example.com", account_mapping.email);
69 EXPECT_EQ("test@gmail.com", account_mapping.email);
79 EXPECT_EQ("test@example.com", account_mapping.email);
89 EXPECT_EQ("test@gmail.com", account_mapping.email);
99 EXPECT_EQ("test@gmail.com", account_mapping.email);
125 // Missing email.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
sheriff_calendar.py 37 def _email_is_valid(email):
38 """Determines whether the given email address is valid."""
39 return VALID_EMAIL_REGEXP.match(email) is not None
43 """Returns the given list with any invalid email addresses removed."""
45 for email in emails:
46 if _email_is_valid(email):
47 rv.append(email)
49 print 'WARNING: Not including %s (invalid email address)' % email
  /external/chromium_org/chrome/browser/services/gcm/
gcm_account_tracker.cc 22 GCMAccountTracker::AccountInfo::AccountInfo(const std::string& email,
24 : email(email), state(state) {
63 if (!iter->email.empty()) {
65 iter->account_key, AccountInfo(iter->email, TOKEN_NEEDED)));
79 DVLOG(1) << "Account added: " << ids.email;
84 DVLOG(1) << "Account removed: " << ids.email;
169 account_tokens[iter->second.email] = iter->second.access_token;
230 DVLOG(1) << "Account signed in: " << ids.email;
233 DCHECK(!ids.email.empty())
    [all...]
  /external/chromium_org/cloud_print/service/
service_state.h 28 bool Configure(const std::string& email,
34 const std::string& email,
40 std::string email() const { function in class:ServiceState
service_state_unittest.cc 31 EXPECT_STREQ("{\"cloud_print\": {\"auth_token\": \"token1\",\"email\": "
45 "{\"cloud_print\": {\"email\": \"test@gmail.com\"}}"));
46 EXPECT_STREQ("test@gmail.com", state.email().c_str());
50 "{\"cloud_print\": {\"email\": \"test2@gmail.com\",\"enabled\": true,\""
53 EXPECT_STREQ("test2@gmail.com", state.email().c_str());
65 const std::string& email,
  /external/chromium_org/media/tools/layout_tests/
layouttest_analyzer.py 37 # Text to append at the end of every analyzer result email.
40 'layout-test-analyzer-result/topics">Email History</a></b><br>'
52 option_parser.add_option('-r', '--receiver-email-address',
54 help=('receiver\'s email address. '
55 'Result email is not sent if this is not '
89 option_parser.add_option('-b', '--email-appended-text-file-location',
91 help=('File location of the email appended text. '
92 'The text is appended in the status email. '
96 option_parser.add_option('-c', '--email-only-change-mode',
98 help=('With this mode, email is sent out
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
crash_restore_browsertest.cc 62 EXPECT_EQ(kUserId1, user->email());
135 EXPECT_EQ(kUserId3, user->email());
142 EXPECT_EQ(kUserId3, users[0]->email());
145 EXPECT_EQ(kUserId2, users[1]->email());
148 EXPECT_EQ(kUserId1, users[2]->email());
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
signin_userlist_unittest.cc 88 EXPECT_EQ(kOwner, users_to_send.back()->email());
98 EXPECT_EQ("a18@gmail.com", users_to_send.back()->email());
99 EXPECT_EQ(kOwner, users_to_send[kMaxUsers-2]->email());
108 EXPECT_EQ("a0@gmail.com", users_to_send.front()->email());
116 EXPECT_EQ("public0@gmail.com", users_to_send.front()->email());
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
background.js 35 if (entry['gd$email']) {
36 var emails = entry['gd$email'];
37 for (var j = 0, email; email = emails[j]; j++) {
38 contact['emails'].push(email['address']);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
validate-committer-lists 72 email = email_link.string.replace(" at ", "@") # The email is obfuscated using " at " instead of "@".
73 emails.append(email)
80 for email in committer.emails:
81 if email in emails:
91 for email in committer.emails:
92 email_to_committer_map[email] = committer
94 return filter(lambda email: not email_to_committer_map.get(email), emails)
185 # First check to see if we have a manual mapping from login to email
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
IntentHelper.java 31 * Triggers a send email intent. If no application has registered to receive these intents,
35 * @param email The email address to send to.
36 * @param subject The subject of the email.
37 * @param body The body of the email.
42 static void sendEmail(Context context, String email, String subject, String body,
46 if (!TextUtils.isEmpty(email)) {
47 possibleEmails.add(email);
  /external/chromium_org/ui/app_list/
app_list_menu.cc 32 users_[i].email.empty() ? users_[i].name
33 : users_[i].email,
38 menu_model_.SetSublabel(menu_index, users_[i].email);
  /external/chromium_org/chrome/browser/signin/
signin_header_helper.h 49 // The prefilled email.
50 std::string email; member in struct:signin::ManageAccountsParams
51 // Whether |email| is a saml account.
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
user_image_source.h 38 // Returns PNG encoded image for user with specified email. If there's
39 // no user with such email, returns the first default image.
40 base::RefCountedMemory* GetUserImage(const std::string& email,
  /external/chromium_org/chrome/common/
service_messages.h 18 IPC_STRUCT_TRAITS_MEMBER(email)
34 // (whether it is enabled, the email address and the proxy id).
  /external/chromium_org/google_apis/gaia/
gaia_auth_util.h 27 // Returns true if the two specified email addresses are the same. Both
31 // Extract the domain part from the canonical form of the given email.
32 std::string ExtractDomainName(const std::string& email);
37 // email/valid pairs. An email addresses is considered valid if a passive

Completed in 1173 milliseconds

12 3 4 5 6 7 8 91011>>