/packages/apps/Email/src/com/android/email/mail/transport/ |
ExchangeSender.java | 17 package com.android.email.mail.transport; 19 import com.android.email.mail.Sender;
|
/packages/apps/Email/tests/src/com/android/email/mail/store/imap/ |
ImapElementTest.java | 17 package com.android.email.mail.store.imap; 19 import com.android.email.mail.store.imap.ImapElement;
|
ImapTestUtils.java | 17 package com.android.email.mail.store.imap; 19 import com.android.email.FixedLengthInputStream; 20 import com.android.email.mail.store.imap.ImapElement; 21 import com.android.email.mail.store.imap.ImapList; 22 import com.android.email.mail.store.imap.ImapResponse; 23 import com.android.email.mail.store.imap.ImapSimpleString; 24 import com.android.email.mail.store.imap.ImapString; 25 import com.android.email.mail.transport.DiscourseLogger;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/ |
image.py | 3 # Contact: email-sig@python.org 11 from email import encoders 12 from email.mime.nonmultipart import MIMENonMultipart
|
base.py | 3 # Contact: email-sig@python.org 9 from email import message
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/ |
image.py | 3 # Contact: email-sig@python.org 11 from email import encoders 12 from email.mime.nonmultipart import MIMENonMultipart
|
/external/chromium_org/chrome/browser/chromeos/login/ |
user_manager.h | 129 // Indicates that a user with the given |email| has just logged in. The 134 virtual void UserLoggedIn(const std::string& email, 138 // Switches to active user identified by |email|. User has to be logged in. 139 virtual void SwitchActiveUser(const std::string& email) = 0; 173 virtual void RemoveUser(const std::string& email, 178 virtual void RemoveUserFromList(const std::string& email) = 0; 180 // Returns true if a user with the given email address is found in the 182 virtual bool IsKnownUser(const std::string& email) const = 0; 184 // Returns the user with the given email address if found in the persistent 186 virtual const User* FindUser(const std::string& email) const = 0 [all...] |
user.cc | 19 // Returns account name portion of an email. 20 std::string GetUserName(const std::string& email) { 21 std::string::size_type i = email.find('@'); 23 return email; 25 return email.substr(0, i); 32 explicit RegularUser(const std::string& email); 95 explicit PublicAccountUser(const std::string& email); 137 // Fallback to the email account name in case display name haven't been set. 174 User* User::CreateRegularUser(const std::string& email) { 175 return new RegularUser(email); [all...] |
wallpaper_manager.h | 112 // Returns custom wallpaper path. Append |sub_dir|, |email| and |file| to 115 const std::string& email, 119 bool GetWallpaperFromCache(const std::string& email, 146 // Removes all |email| related wallpaper info and saved wallpapers. 147 void RemoveUserWallpaperInfo(const std::string& email); 194 // Sets |email|'s wallpaper. 195 void SetUserWallpaper(const std::string& email); 230 // Caches |email|'s wallpaper to memory. 231 void CacheUserWallpaper(const std::string& email); 242 // Deletes all |email| related custom or converted wallpapers [all...] |
/external/chromium/chrome/browser/sync/notifier/ |
sync_notifier.h | 48 const std::string& email, const std::string& token) = 0;
|
/external/chromium/chrome/browser/ui/webui/options/chromeos/ |
user_image_source.h | 31 // Returns PNG encoded image for user with specified email. 32 // If there's no user with such email, returns the default image. 33 std::vector<unsigned char> GetUserImage(const std::string& email) const;
|
/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;
|
/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;
|
SmallTests.java | 17 package com.android.email; 25 * Unit & small test suites for Email. This is intended to run all tests that can be handled 26 * locally, without requiring any external email server. 30 * -e class com.android.email.UnitTests \ 31 * com.android.email.tests/android.test.InstrumentationTestRunner
|
/packages/apps/Email/tests/src/com/android/email/activity/ |
MessageFileViewTest.java | 17 package com.android.email.activity; 19 import com.android.email.DBTestHelper; 20 import com.android.email.TestUtils; 21 import com.android.email.provider.ProviderTestUtils;
|
/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/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
|
/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...] |