/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
|
audio.py | 3 # Contact: email-sig@python.org 12 from email import encoders 13 from email.mime.nonmultipart import MIMENonMultipart
|
/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/chrome/browser/chromeos/login/ |
user_manager.h | 42 // The email the user used to log in. 43 void set_email(const std::string& email) { email_ = email; } 44 const std::string& email() const { return email_; } function in class:chromeos::UserManager::User 49 // Tooltip contains user's display name and his email domain to distinguish 76 // Indicates that a user with the given email has just logged in. 78 virtual void UserLoggedIn(const std::string& email); 83 virtual void RemoveUser(const std::string& email, 88 virtual void RemoveUserFromList(const std::string& email); 91 virtual bool IsKnownUser(const std::string& email); [all...] |
user_manager.cc | 112 g_user_manager.Get().logged_in_user().email()); 151 // Value of owner email is still not verified. 216 const std::string& user_email = email(); 256 std::string email; local 257 if ((*it)->GetAsString(&email)) { 259 user.set_email(email); 260 UserImages::const_iterator image_it = user_images_.find(email); 264 prefs_images->GetStringWithoutPathExpansion(email, &image_path)) { 272 user_images_[email] = user.image(); 276 user_images_[email] = user.image() 464 std::string email; local [all...] |
/external/chromium_org/chrome/browser/chromeos/login/ |
user_manager_impl.cc | 143 // Ensure the value of owner email has been fetched. 146 // Value of owner email is not fetched yet. RemoveUserInternal will be 178 std::string email; local 179 if (!users_list.GetString(i, &email) || email.empty()) { 183 if (existing_users.find(email) != existing_users.end() || 184 !users_set->insert(email).second) { 185 LOG(ERROR) << "Duplicate user: " << email; 188 users_vector->push_back(email); 314 void UserManagerImpl::UserLoggedIn(const std::string& email, [all...] |
wallpaper_manager.cc | 85 // Returns custom wallpaper directory by appending |sub_dir| and |email| as sub 88 const std::string& email) { 92 return custom_wallpaper_dir.Append(sub_dir).Append(email); 203 SetUserWallpaper(UserManager::Get()->GetLoggedInUser()->email()); 214 const std::string& email, 216 base::FilePath custom_wallpaper_path = GetCustomWallpaperDir(sub_dir, email); 220 bool WallpaperManager::GetWallpaperFromCache(const std::string& email, 223 CustomWallpaperMap::const_iterator it = wallpaper_cache_.find(email); 264 return GetUserWallpaperInfo(UserManager::Get()->GetLoggedInUser()->email(), 298 SetUserWallpaper(user_manager->GetLoggedInUser()->email()); 879 std::string email = (*it)->email(); local [all...] |
/external/chromium/chrome/browser/sync/util/ |
user_settings.h | 35 void StoreHashedPassword(const std::string& email, 37 bool VerifyAgainstStoredHash(const std::string& email, 41 void SwitchUser(const std::string& email); 43 // Saves the email address and the named service token for the given user. 44 // Call this multiple times with the same email parameter to save multiple 46 void SetAuthTokenForService(const std::string& email, 66 // Multiple email addresses can map to the same Google Account. This method 67 // returns the primary Google Account email associated with |signin|, which 71 std::string email() const;
|
user_settings_win.cc | 18 void UserSettings::SetAuthTokenForService(const string& email, 24 "(email, service_name, service_token) " 26 statement.bind_string(0, email); 42 "SELECT email, service_token FROM cookies"
|
/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()))) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/ |
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/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/common/extensions/docs/examples/extensions/oauth_contacts/ |
contacts.js | 15 for (var j = 0, email; email = contact['emails'][j]; j++) { 17 liEmail.innerText = email;
|
/external/chromium/chrome/browser/autofill/ |
autofill_common_test.h | 32 const char* last_name, const char* email, const char* company, 39 const char* last_name, const char* email, const char* company,
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_common_test.h | 57 const char* last_name, const char* email, const char* company, 64 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;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/ |
audio.py | 3 # Contact: email-sig@python.org 12 from email import encoders 13 from email.mime.nonmultipart import MIMENonMultipart
|
/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 string16& 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 | 28 // Returns true if the two specified email addresses are the same. Both 32 // Extract the domain part from the canonical form of the given email. 33 std::string ExtractDomainName(const std::string& email);
|
/external/chromium_org/remoting/tools/ |
register_host.py | 38 print "Email:", 39 email = raw_input() 43 auth_token = chromoting_auth.authenticate(email, password) 93 auth_token = authenticator.authenticate(email, password) 99 "xmpp_login" : email,
|
/external/chromium_org/sync/notifier/ |
invalidator.h | 85 const std::string& email, const std::string& token) = 0;
|