Searched refs:email (Results 26 - 50 of 418) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smackx/workgroup/settings/
H A DWorkgroupProperties.java30 private String email; field in class:WorkgroupProperties
43 return email;
46 public void setEmail(String email) { argument
47 this.email = email;
111 else if ((eventType == XmlPullParser.START_TAG) && ("email".equals(parser.getName()))) {
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DAgentStatus.java119 private String email; field in class:AgentStatus.ChatInfo
123 public ChatInfo(String sessionID, String userID, Date date, String email, String username, String question) { argument
127 this.email = email;
164 * Returns the email address associated with the user.
166 * @return the email address associated with the user.
169 return email;
203 if (email != null) {
204 buf.append(" email=\"").append(email)
[all...]
/external/chromium_org/chrome/browser/chromeos/login/users/
H A Dfake_user_manager.h29 const user_manager::User* AddUser(const std::string& email);
35 const user_manager::User* AddPublicAccountUser(const std::string& email);
38 void LoginUser(const std::string& email);
45 virtual void SetUserFlow(const std::string& email, UserFlow* flow) OVERRIDE {}
47 virtual UserFlow* GetUserFlow(const std::string& email) const OVERRIDE;
48 virtual void ResetUserFlow(const std::string& email) OVERRIDE {}
57 virtual void UserLoggedIn(const std::string& email,
63 virtual void SwitchActiveUser(const std::string& email) OVERRIDE;
76 virtual void RemoveUser(const std::string& email,
79 virtual void RemoveUserFromList(const std::string& email) OVERRID
[all...]
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Daccounts_user_name_edit.js9 * {name: 'john', email: 'john@gmail.com'}
17 * {name: 'john', email: 'john@chromium.org'}
26 * {name: 'John doe', email: 'john@chromium.org'}
59 * Note that the email parsing is based on RFC 5322 and does not support
61 * as valid for an email alias (aka local-part):
70 * @return {?{name: string, email: string}} User info parsed from the
82 email: matches[1] + '@gmail.com'
90 email: matches[1] + '@' + matches[2]
98 email: matches[2]
/external/chromium_org/chrome/browser/signin/
H A Dsignin_names_io_thread.h17 // This class provides access to a list of email addresses for all profiles
20 // the list of email addresses, and is used by the one-click sign in code to
35 // Gets the set of email addresses of connected profiles. This method should
61 // Posts a task to the I/O thread to add or remove the email address from
63 void PostTaskToIOThread(bool add, const base::string16& email);
65 // Updates the email set on the I/O thread. Protected for testing.
66 void UpdateOnIOThread(bool add, const base::string16& email);
H A Dsignin_header_helper.h49 // The prefilled email.
50 std::string email; member in struct:signin::ManageAccountsParams
51 // Whether |email| is a saml account.
/external/chromium_org/chrome/browser/supervised_user/chromeos/
H A Dmanager_password_service_factory.cc49 user->email())) {
52 user->email(),
/external/chromium_org/chrome/browser/ui/app_list/search/people/
H A Dperson.h46 std::string email; member in struct:app_list::Person
/external/chromium_org/google_apis/gcm/engine/
H A Daccount_mapping.h43 std::string email; member in struct:gcm::AccountMapping
H A Daccount_mapping_unittest.cc18 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/chrome/browser/services/gcm/
H A Dgcm_account_tracker.cc22 GCMAccountTracker::AccountInfo::AccountInfo(const std::string& email, argument
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
[all...]
/external/chromium_org/cloud_print/service/
H A Dservice_state.h28 bool Configure(const std::string& email,
34 const std::string& email,
40 std::string email() const { function in class:ServiceState
H A Dservice_state_unittest.cc31 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/jingle/notifier/listener/
H A Dfake_push_client.cc29 const std::string& email, const std::string& token) {
30 email_ = email;
63 const std::string& FakePushClient::email() const { function in class:notifier::FakePushClient
28 UpdateCredentials( const std::string& email, const std::string& token) argument
/external/chromium_org/chrome/browser/chromeos/login/
H A Dcrash_restore_browsertest.cc62 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/
H A Dsignin_userlist_unittest.cc88 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/lldb/utils/test/
H A Dras.py4 Run the test suite and send the result as an email message.
7 http://docs.python.org/library/email-examples.html.
19 from email import encoders
20 from email.message import Message
21 from email.mime.audio import MIMEAudio
22 from email.mime.base import MIMEBase
23 from email.mime.image import MIMEImage
24 from email.mime.multipart import MIMEMultipart
25 from email.mime.text import MIMEText
50 # This will be used as the subject line of our email abou
[all...]
/external/chromium_org/chrome/browser/resources/gaia_auth_host/
H A Dgaia_auth_host.js53 'email', // Pre-fill the email field in Gaia UI;
131 * email: 'xx@gmail.com',
292 * @param {string} email The authenticated user's e-mail address.
294 setAuthenticatedUserEmail: function(attemptToken, email) {
298 email: email
342 if (!msg.email && !this.email_ && !msg.skipForNow) {
347 this.onAuthSuccess_({email: msg.email,
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dvalidate-committer-lists72 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/browser/resources/chromeos/login/
H A Dscreen_gaia_signin.js56 email: '',
251 this.email = '';
344 * @param {string} email The authenticated user's e-mail address.
346 setAuthenticatedUserEmail: function(attemptToken, email) {
347 if (!email) {
351 this.gaiaAuthHost_.setAuthenticatedUserEmail(attemptToken, email);
476 * @param {string} email The authenticated user's e-mail.
478 onAuthNoPassword_: function(email) {
512 this.email = credentials.email;
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DIntentHelper.java31 * 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, argument
46 if (!TextUtils.isEmpty(email)) {
47 possibleEmails.add(email);
/external/chromium_org/remoting/webapp/
H A Didentity.js75 * Get the user's email address.
77 * @param {function(string):void} onOk Callback invoked when the email
86 /** @param {string} email */
87 var onResponse = function(email) {
88 that.email_ = email;
89 onOk(email);
97 * Get the user's email address, or null if no successful call to getEmail
100 * @return {?string} The cached email address, if available.
/external/chromium_org/ui/app_list/
H A Dapp_list_menu.cc32 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/ui/ash/multi_user/
H A Dmulti_user_util.h21 // Get the user id from an email address.
22 std::string GetUserIDFromEmail(const std::string& email);
/external/chromium_org/chrome/browser/ui/cocoa/
H A Done_click_signin_dialog_controller.h25 // open links, |email| is the user's email address that is used for sync,
30 const base::string16& email);

Completed in 465 milliseconds

1234567891011>>