HomeSort by relevance Sort by last modified time
    Searched refs:email (Results 51 - 75 of 743) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/jingle/notifier/base/
notifier_options_util.h 22 const std::string& email, const std::string& token);
  /external/protobuf/examples/
add_person.cc 20 cout << "Enter email address (blank for none): ";
21 string email; local
22 getline(cin, email);
23 if (!email.empty()) {
24 person->set_email(email);
  /packages/apps/Email/src/com/android/email/
EmailAddressValidator.java 17 package com.android.email;
  /packages/apps/Email/src/com/android/email/activity/setup/
ForwardingIntent.java 17 package com.android.email.activity.setup;
AccountCredentials.java 1 package com.android.email.activity.setup;
9 import com.android.email.R;
10 import com.android.email.activity.UiUtilities;
15 private static final String EXTRA_EMAIL = "email";
20 public static Intent getAccountCredentialsIntent(final Context context, final String email,
23 i.putExtra(EXTRA_EMAIL, email);
  /packages/apps/Email/src/com/android/email/provider/
AccountBackupRestore.java 17 package com.android.email.provider;
31 * email data for IMAP/EAS to be re-synced and prevent the worst outcomes from occurring.
  /packages/apps/Email/src/com/android/email/service/
EmailBroadcastReceiver.java 17 package com.android.email.service;
EmailUpgradeBroadcastReceiver.java 1 package com.android.email.service;
  /packages/apps/Email/tests/src/com/android/email/
MockClock.java 17 package com.android.email;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
charset.py 3 # Contact: email-sig@python.org
13 import email.base64mime namespace
14 import email.quoprimime namespace
16 from email import errors
17 from email.encoders import encode_7or8bit
68 # them to the real ones used in email.
161 """Map character sets to their email properties.
163 This class provides information about the requirements imposed on email
167 information on how to use that character set in an email in an
171 when used in email headers or bodies. Certain character sets must b
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
base.py 3 # Contact: email-sig@python.org
9 from email import message
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email_codecs.py 2 # Contact: email-sig@python.org
3 # email package unit tests for (optional) Asian codecs
8 from email.test.test_email import TestEmailBase
9 from email.charset import Charset
10 from email.header import Header, decode_header
11 from email.message import Message
test_email_codecs_renamed.py 2 # Contact: email-sig@python.org
3 # email package unit tests for (optional) Asian codecs
8 from email.test.test_email import TestEmailBase
9 from email.charset import Charset
10 from email.header import Header, decode_header
11 from email.message import Message
test_email_torture.py 3 # A torture test of the email package. This should not be run as part of the
4 # standard Python test suite since it requires several meg of email messages
6 # Python distro, but are available as part of the standalone email package at
15 from email.test.test_email import TestEmailBase
18 import email namespace
19 from email import __file__ as testfile
20 from email.iterators import _structure
40 msg = email.message_from_file(fp)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
charset.py 3 # Contact: email-sig@python.org
13 import email.base64mime namespace
14 import email.quoprimime namespace
16 from email import errors
17 from email.encoders import encode_7or8bit
68 # them to the real ones used in email.
161 """Map character sets to their email properties.
163 This class provides information about the requirements imposed on email
167 information on how to use that character set in an email in an
171 when used in email headers or bodies. Certain character sets must b
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
base.py 3 # Contact: email-sig@python.org
9 from email import message
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email_codecs.py 2 # Contact: email-sig@python.org
3 # email package unit tests for (optional) Asian codecs
8 from email.test.test_email import TestEmailBase
9 from email.charset import Charset
10 from email.header import Header, decode_header
11 from email.message import Message
test_email_codecs_renamed.py 2 # Contact: email-sig@python.org
3 # email package unit tests for (optional) Asian codecs
8 from email.test.test_email import TestEmailBase
9 from email.charset import Charset
10 from email.header import Header, decode_header
11 from email.message import Message
test_email_torture.py 3 # A torture test of the email package. This should not be run as part of the
4 # standard Python test suite since it requires several meg of email messages
6 # Python distro, but are available as part of the standalone email package at
15 from email.test.test_email import TestEmailBase
18 import email namespace
19 from email import __file__ as testfile
20 from email.iterators import _structure
40 msg = email.message_from_file(fp)
  /external/chromium_org/chrome/browser/chromeos/login/signin/
auth_sync_observer.cc 61 std::string email = user->email(); local
62 DCHECK(!email.empty());
65 UserManager::Get()->SaveUserOAuthStatus(email,
83 user->email(),
  /external/smack/src/org/jivesoftware/smackx/workgroup/settings/
WorkgroupProperties.java 30 private String email; field in class:WorkgroupProperties
43 return email;
46 public void setEmail(String email) {
47 this.email = email;
111 else if ((eventType == XmlPullParser.START_TAG) && ("email".equals(parser.getName()))) {
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
AgentStatus.java 119 private String email; field in class:AgentStatus.ChatInfo
123 public ChatInfo(String sessionID, String userID, Date date, String email, String username, String question) {
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).append("\"");
259 String email = parser.getAttributeValue("", "email"); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/users/
fake_user_manager.h 29 const User* AddUser(const std::string& email);
35 void LoginUser(const std::string& email);
46 virtual void UserLoggedIn(const std::string& email,
52 virtual void SwitchActiveUser(const std::string& email) OVERRIDE;
70 virtual void RemoveUser(const std::string& email,
72 virtual void RemoveUserFromList(const std::string& email) OVERRIDE {}
73 virtual bool IsKnownUser(const std::string& email) const OVERRIDE;
74 virtual const User* FindUser(const std::string& email) const OVERRIDE;
75 virtual User* FindUserAndModify(const std::string& email) OVERRIDE;
108 const std::string& email) const OVERRIDE
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/
VendorPolicyLoader.java 30 * A bridge class to the email vendor policy apk.
32 * <p>Email vendor policy is a system apk named "com.android.email.helper". When exists, it must
33 * contain a class called "com.android.email.policy.EmailPolicy" with a static public method
36 * <p>A vendor policy apk is optional. The email application will operate properly when none is
40 private static final String POLICY_PACKAGE = "com.android.email.policy";
235 * @param email user-specified data used to replace template values
237 public void expandTemplates(String email) {
238 final String[] emailParts = email.split("@");
241 incomingUri = expandTemplate(incomingUriTemplate, email, user)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
contacts.js 15 for (var j = 0, email; email = contact['emails'][j]; j++) {
17 liEmail.innerText = email;

Completed in 520 milliseconds

1 23 4 5 6 7 8 91011>>