/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/ |
multipart.py | 3 # Contact: email-sig@python.org 9 from email.mime.base import MIMEBase
|
/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/jingle/notifier/listener/ |
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/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...] |
/packages/apps/Email/provider_src/com/android/email/mail/store/ |
ServiceStore.java | 17 package com.android.email.mail.store; 23 import com.android.email.mail.Store; 24 import com.android.email.service.EmailServiceUtils;
|
/packages/apps/Email/provider_src/com/android/email/service/ |
AccountService.java | 17 package com.android.email.service; 25 import com.android.email.DebugUtils; 26 import com.android.email.ResourceHelper;
|
ImapTempFileLiteral.java | 17 package com.android.email.service; 19 import com.android.email.FixedLengthInputStream; 20 import com.android.email.mail.store.imap.ImapResponse; 21 import com.android.email.mail.store.imap.ImapResponseParser; 22 import com.android.email.mail.store.imap.ImapString;
|
/packages/apps/Email/src/com/android/email/ |
EmailApplication.java | 17 package com.android.email; 23 import com.android.email.activity.setup.EmailPreferenceActivity; 24 import com.android.email.preferences.EmailPreferenceMigrator; 37 private static final String LOG_TAG = "Email";
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
__init__.py | 3 # Contact: email-sig@python.org 5 """A package for parsing, handling, and generating email messages.""" 50 # of importing email since those cascadingly import most of the rest of the 51 # email package. 57 from email.parser import Parser 66 from email.parser import Parser 73 # email 4.0 module names), to old-style names (email 3.0 module names). 78 self.__name__ = 'email.' + module_name 88 # email.<old name> -> email.<new name is lowercased old name 118 import email.mime namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
__init__.py | 3 # Contact: email-sig@python.org 5 """A package for parsing, handling, and generating email messages.""" 50 # of importing email since those cascadingly import most of the rest of the 51 # email package. 57 from email.parser import Parser 66 from email.parser import Parser 73 # email 4.0 module names), to old-style names (email 3.0 module names). 78 self.__name__ = 'email.' + module_name 88 # email.<old name> -> email.<new name is lowercased old name 118 import email.mime namespace [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());
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSetupBasicsFragment.java | 17 package com.android.email.activity.setup; 28 import com.android.email.R; 29 import com.android.email.activity.UiUtilities; 127 public void setEmail(final String email) { 128 mEmailView.setText(email);
|
DebugFragment.java | 17 package com.android.email.activity.setup; 30 import com.android.email.DebugUtils; 31 import com.android.email.Preferences; 32 import com.android.email.R; 33 import com.android.email.activity.UiUtilities; 34 import com.android.email.service.EmailServiceUtils;
|
/packages/apps/Email/tests/src/com/android/email/mail/store/imap/ |
ImapResponseTest.java | 17 package com.android.email.mail.store.imap; 19 import static com.android.email.mail.store.imap.ImapTestUtils.*; 21 import com.android.email.mail.store.imap.ImapConstants; 22 import com.android.email.mail.store.imap.ImapResponse; 23 import com.android.email.mail.store.imap.ImapSimpleString;
|
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/ |
ContactRequest.java | 38 public ContactRequest(final String name, final String email) { 40 mEmail = normalizeEmail(email); 43 private String normalizeEmail(final String email) { 44 if (TextUtils.isEmpty(email)) { 45 throw new IllegalArgumentException("Email must not be empty."); 48 return email; 62 // Only count email, so we can pull results out of the cache that are from other contact 74 // Only count email, so we can pull results out of the cache that are from other contact
|
/external/chromium_org/google_apis/gcm/engine/ |
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/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);
|
/packages/apps/Email/tests/src/com/android/email/ |
ControllerProviderOpsTests.java | 17 package com.android.email; 23 import com.android.email.provider.ContentCache; 24 import com.android.email.provider.EmailProvider; 38 * runtest -c com.android.email.ControllerProviderOpsTests email
|
/packages/apps/UnifiedEmail/src/com/android/mail/ |
SenderInfoLoader.java | 30 import android.provider.ContactsContract.CommonDataKinds.Email; 47 * A {@link Loader} to look up presence, contact URI, and photo data for a set of email 53 Email._ID, // 0 54 Email.DATA, // 1 55 Email.CONTACT_ID, // 2 56 Email.PHOTO_ID, // 3 102 * @param emails The email addresses of the sender images to return. 106 * @return A mapping of email to {@link ContactInfo}. How to interpret the map: 108 * <li>The email is missing from the key set or maps to null - The email was skipped. Tr 155 String email = cursor.getString(DATA_EMAIL_COLUMN); local 215 String email = prev.first; local [all...] |