HomeSort by relevance Sort by last modified time
    Searched refs:email (Results 476 - 500 of 703) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
popuplib.js 158 // (Example for attribute exchange request for email and name,
162 // 'openid.ax.type.email' : 'http://axschema.org/contact/email',
165 // 'openid.ax.required' : 'email,name1,name2' };
  /external/chromium_org/chrome/browser/chromeos/login/
screen_locker.cc 293 Authenticate(UserContext(users_[0]->email(), password, ""));
453 if ((*it)->email() == username)
wallpaper_manager_browsertest.cc 93 const std::string& email,
96 WallpaperManager::Get()->GetCustomWallpaperPath(sub_dir, email, id);
existing_user_controller.cc 182 // TODO(xiyuan): Clean user profile whose email is not in whitelist.
187 LoginUtils::IsWhitelisted((*it)->email()) ||
624 void ExistingUserController::SetDisplayEmail(const std::string& email) {
625 display_email_ = email;
770 // Clear the recorded displayed email so it won't affect any future attempts.
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
cros_settings.cc 207 const std::string& email) const {
210 gaia::CanonicalizeEmail(gaia::SanitizeEmail(email)));
  /external/chromium_org/chrome/browser/profiles/
profile_io_data.h 148 void set_reverse_autologin_pending_email(const std::string& email) {
149 reverse_autologin_pending_email_ = email;
455 // Provides access to the email addresses of all signed in profiles.
463 // the email of the google account that is being signed into.
  /external/chromium_org/chrome/browser/resources/net_export/
net_export.js 69 * Sends NetLog data via email from browser.
  /external/chromium_org/chrome/browser/ui/gtk/
one_click_signin_bubble_gtk.cc 34 const string16& email,
38 email_(email),
208 // The email is always set for the sync dialog.
  /external/chromium_org/chrome/browser/ui/sync/
one_click_signin_sync_starter.cc 48 const std::string& email,
73 manager->StartSignInWithCredentials(session_index, email, password, callback);
393 string16(), // No email required - this is not a SAML confirmation.
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
popuplib.js 158 // (Example for attribute exchange request for email and name,
162 // 'openid.ax.type.email' : 'http://axschema.org/contact/email',
165 // 'openid.ax.required' : 'email,name1,name2' };
  /external/chromium_org/components/test/data/web_database/
version_25.sql 13 CREATE TABLE autofill_profiles ( label VARCHAR,unique_id INTEGER PRIMARY KEY, first_name VARCHAR,middle_name VARCHAR, last_name VARCHAR, email VARCHAR,company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR,city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR,phone VARCHAR, fax VARCHAR);
version_26.sql 13 CREATE TABLE autofill_profiles ( label VARCHAR,unique_id INTEGER PRIMARY KEY, first_name VARCHAR,middle_name VARCHAR, last_name VARCHAR, email VARCHAR,company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR,city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR,phone VARCHAR, fax VARCHAR);
version_48.sql 14 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
  /external/chromium_org/media/tools/bug_hunter/
bug_hunter.py 42 from email.mime.multipart import MIMEMultipart
43 from email.mime.text import MIMEText
97 parser.add_option('-e', '--email-entries',
99 'sent in the email content. '
119 parser.add_option('-r', '--receiver-email-address',
120 help="Receiver's email address (Required).")
121 parser.add_option('-s', '--sender-email-address',
122 help="Sender's email address (Required).")
126 'result email. Default: %default.'))
146 logging.warning('No issue elements in email in option.
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 154 final EmailDataItem email = (EmailDataItem) item; local
155 final String address = email.getData();
176 // Use Google Talk string when using Email, and clear data
177 // Uri so we don't try saving Email as primary.
  /packages/apps/Email/src/com/android/email/activity/setup/
MailboxSettings.java 17 package com.android.email.activity.setup;
35 import com.android.email.R;
72 /** Projection for loading the max email lookback. */
123 // Always show "app up" as we expect our parent to be an Email activity.
  /packages/apps/Email/src/com/android/email/service/
PopImapSyncAdapterService.java 17 package com.android.email.service;
33 import com.android.email.R;
180 // Find an EmailProvider account with the Account's email address
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
UtilityMediumTests.java 19 import com.android.email.provider.EmailProvider;
20 import com.android.email.provider.ProviderTestUtils;
42 * runtest -c com.android.emailcommon.utility.UtilityMediumTests email
  /external/chromium_org/chrome/browser/resources/
sync_setup_overlay.css 101 #email-readonly {
289 #email-row,
290 #email-readonly-row,
  /external/chromium_org/ui/base/text/
text_elider.cc 149 string16 ElideEmail(const string16& email,
152 if (font.GetStringWidth(email) <= available_pixel_width)
153 return email;
155 // Split the email into its local-part (username) and domain-part. The email
157 // email under some special requirements. It is guaranteed that there is no @
158 // symbol in the domain part of the email however so splitting at the last @
160 const size_t split_index = email.find_last_of('@');
162 string16 username = email.substr(0, split_index);
163 string16 domain = email.substr(split_index + 1)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailbox.py 18 import email namespace
19 import email.message namespace
20 import email.generator namespace
206 # used in strings and by email.Message are translated here.
208 if isinstance(message, email.message.Message):
210 gen = email.generator.Generator(buffer, mangle_from_, 0)
799 elif isinstance(message, email.message.Message):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailbox.py 18 import email namespace
19 import email.message namespace
20 import email.generator namespace
206 # used in strings and by email.Message are translated here.
208 if isinstance(message, email.message.Message):
210 gen = email.generator.Generator(buffer, mangle_from_, 0)
799 elif isinstance(message, email.message.Message):
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 29 import email namespace
30 import email.Utils namespace
31 import email.Message namespace
32 import email.FeedParser namespace
312 date = calendar.timegm(email.Utils.parsedate_tz(response_headers['date']))
321 expires = email.Utils.parsedate_tz(response_headers['expires'])
368 info = email.Message.Message()
615 auth = dict(Email=credentials[0], Passwd=credentials[1], service=service, source=headers['user-agent'])
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 29 import email namespace
30 import email.Utils namespace
31 import email.Message namespace
32 import email.FeedParser namespace
312 date = calendar.timegm(email.Utils.parsedate_tz(response_headers['date']))
321 expires = email.Utils.parsedate_tz(response_headers['expires'])
368 info = email.Message.Message()
615 auth = dict(Email=credentials[0], Passwd=credentials[1], service=service, source=headers['user-agent'])
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java 17 package com.android.email.mail.store;
29 import com.android.email.DBTestHelper;
30 import com.android.email.MockSharedPreferences;
31 import com.android.email.MockVendorPolicy;
32 import com.android.email.VendorPolicyLoader;
33 import com.android.email.mail.Transport;
34 import com.android.email.mail.store.ImapStore.ImapMessage;
35 import com.android.email.mail.store.imap.ImapResponse;
36 import com.android.email.mail.store.imap.ImapTestUtils;
37 import com.android.email.mail.transport.MockTransport
    [all...]

Completed in 759 milliseconds

<<11121314151617181920>>