HomeSort by relevance Sort by last modified time
    Searched refs:email (Results 251 - 275 of 642) sorted by null

<<11121314151617181920>>

  /external/v8/testing/gmock/scripts/
upload.py 66 """Prompts the user for their email address and returns it.
68 The last used email address is saved to a file and offered up as a suggestion
70 used email address is used. If the user enters a new address, it is saved
84 email = raw_input(prompt + ": ").strip()
85 if email:
88 last_email_file.write(email)
93 email = last_email
94 return email
134 (email, password) tuple when called. Will be called if authentication
172 def _GetAuthToken(self, email, password)
    [all...]
  /external/v8/testing/gtest/scripts/
upload.py 66 """Prompts the user for their email address and returns it.
68 The last used email address is saved to a file and offered up as a suggestion
70 used email address is used. If the user enters a new address, it is saved
84 email = raw_input(prompt + ": ").strip()
85 if email:
88 last_email_file.write(email)
93 email = last_email
94 return email
134 (email, password) tuple when called. Will be called if authentication
172 def _GetAuthToken(self, email, password)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/simulator/impl/
SimulatorContacts.java 47 .addEmail(new Email("m@example.com"))
55 .addEmail(new Email("l@example.com"))
63 .addEmail(new Email("r@example.com"))
111 .addEmail(new Email("no@example.com"))
179 for (Email email : contact.getEmails()) {
185 ContactsContract.CommonDataKinds.Email.CONTENT_ITEM_TYPE)
186 .withValue(ContactsContract.CommonDataKinds.Email.DATA, email.value)
187 .withValue(ContactsContract.CommonDataKinds.Email.TYPE, email.type
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DataUtil.java 62 public static long insertEmail(ContentResolver resolver, long rawContactId, String email) {
64 values.put(ContactsContract.Data.MIMETYPE, CommonDataKinds.Email.CONTENT_ITEM_TYPE);
65 values.put(CommonDataKinds.Email.ADDRESS, email);
  /external/boringssl/src/crypto/x509/
x509_vpm.c 156 if (paramid->email) {
157 OPENSSL_free(paramid->email);
158 paramid->email = NULL;
310 if (test_x509_verify_param_copy_id(email, NULL)) {
311 if (!X509_VERIFY_PARAM_set1_email(dest, id->email, id->emaillen))
479 const char *email, size_t emaillen)
481 return int_x509_param_set1(&param->id->email, &param->id->emaillen,
482 email, emaillen);
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/
ContactsMatchers.java 62 public static Matcher<Cursor> hasEmail(final String email) {
64 hasMimeType(ContactsContract.CommonDataKinds.Email.CONTENT_ITEM_TYPE),
66 ContactsContract.CommonDataKinds.Email.ADDRESS, email)));
  /packages/apps/Email/provider_src/com/android/email/mail/
Sender.java 17 package com.android.email.mail;
22 import com.android.email.R;
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapConstants.java 17 package com.android.email.mail.store.imap;
19 import com.android.email.mail.Store;
  /packages/apps/Email/provider_src/com/android/email/service/
EasTestAuthenticatorService.java 17 package com.android.email.service;
30 import com.android.email.setup.AuthenticatorSetupIntentHelper;
52 // 1) We are called with a username/password; this comes from the traditional email
PolicyService.java 17 package com.android.email.service;
27 import com.android.email.SecurityPolicy;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountFinalizeFragment.java 17 package com.android.email.activity.setup;
27 import com.android.email.provider.AccountBackupRestore;
CheckSettingsProgressDialogFragment.java 17 package com.android.email.activity.setup;
27 import com.android.email.R;
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
ContactDrawable.java 92 final String email = mContactRequest.getEmail(); local
93 // The email should already have been normalized by the ContactRequest.
94 sPaint.setColor(getTileColorPicker().pickColor(email));
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForEmail.java 22 import android.provider.ContactsContract.CommonDataKinds.Email;
27 * Handler for email address data rows.
33 super(context, dbHelper, aggregator, Email.CONTENT_ITEM_TYPE, Email.TYPE, Email.LABEL);
39 String email = values.getAsString(Email.DATA); local
44 String address = mDbHelper.insertNameLookupForEmail(rawContactId, dataId, email);
58 if (values.containsKey(Email.DATA)) {
62 String address = values.getAsString(Email.DATA)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/
test_email.py 2 # Contact: email-sig@python.org
3 # email package unit tests
14 import email
16 from email.Charset import Charset
17 from email.Header import Header, decode_header, make_header
18 from email.Parser import Parser, HeaderParser
19 from email.Generator import Generator, DecodedGenerator
20 from email.Message import Message
21 from email.MIMEAudio import MIMEAudio
22 from email.MIMEText import MIMEText
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/test/
test_email.py 2 # Contact: email-sig@python.org
3 # email package unit tests
15 import email
17 from email.Charset import Charset
18 from email.Header import Header, decode_header, make_header
19 from email.Parser import Parser, HeaderParser
20 from email.Generator import Generator, DecodedGenerator
21 from email.Message import Message
22 from email.MIMEAudio import MIMEAudio
23 from email.MIMEText import MIMETex
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/email/test/
test_email.py 2 # Contact: email-sig@python.org
3 # email package unit tests
15 import email
17 from email.Charset import Charset
18 from email.Header import Header, decode_header, make_header
19 from email.Parser import Parser, HeaderParser
20 from email.Generator import Generator, DecodedGenerator
21 from email.Message import Message
22 from email.MIMEAudio import MIMEAudio
23 from email.MIMEText import MIMETex
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email.py 2 # Contact: email-sig@python.org
3 # email package unit tests
15 import email
17 from email.Charset import Charset
18 from email.Header import Header, decode_header, make_header
19 from email.Parser import Parser, HeaderParser
20 from email.Generator import Generator, DecodedGenerator
21 from email.Message import Message
22 from email.MIMEAudio import MIMEAudio
23 from email.MIMEText import MIMETex
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email.py 2 # Contact: email-sig@python.org
3 # email package unit tests
15 import email
17 from email.Charset import Charset
18 from email.Header import Header, decode_header, make_header
19 from email.Parser import Parser, HeaderParser
20 from email.Generator import Generator, DecodedGenerator
21 from email.Message import Message
22 from email.MIMEAudio import MIMEAudio
23 from email.MIMEText import MIMETex
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 31 email = db.EmailProperty() variable in class:Contact
  /device/sample/apps/SampleEmailPolicy/src/com/android/email/policy/
EmailPolicy.java 17 package com.android.email.policy;
26 * When this package is built and included in a system image, the Email application will detect
28 * can be used to provide local customization of the Email application.
31 * this sample code or the Email application will not find the helper.
50 * Future versions of the Email application may access additional customization points. If
90 * automatic setup/configuration for specific email providers. These values supplement (or
92 * the Email sources. (See that file for more information and plenty of samples.)
95 * user entered as part of their email address; For example, if the user enters
141 * specified email address.
144 * $email - the email address the user entere
    [all...]
  /external/libpng/contrib/gregbook/
writepng.h 105 char *email; member in struct:_mainprog_info
  /external/libxml2/example/
gjobread.c 34 xmlChar *email; member in struct:person
67 if ((!xmlStrcmp(cur->name, (const xmlChar *)"Email")) &&
69 ret->email = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
84 if (cur->email) printf(" email: %s\n", cur->email);
  /external/mockito/src/test/java/org/mockitousage/matchers/
CapturingArgumentsTest.java 46 public void email(Integer ... personId) { method in class:CapturingArgumentsTest.BulkEmailService
69 bulkEmailService.email(12);
82 bulkEmailService.email(11, 12);
96 bulkEmailService.email(11, 12, 13);
  /external/nanopb-c/tests/basic_stream/
decode_stream.c 26 printf("email: \"%s\"\n", person.email);

Completed in 762 milliseconds

<<11121314151617181920>>