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

<<11121314151617181920>>

  /packages/apps/Email/src/com/android/email/activity/setup/
GeneralPreferences.java 17 package com.android.email.activity.setup;
32 import com.android.email.Preferences;
33 import com.android.email.R;
34 import com.android.email.provider.EmailProvider;
  /packages/apps/Email/src/com/android/email/mail/internet/
EmailHtmlUtil.java 17 package com.android.email.mail.internet;
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapResponse.java 17 package com.android.email.mail.store.imap;
ImapResponseParser.java 17 package com.android.email.mail.store.imap;
21 import com.android.email.FixedLengthInputStream;
22 import com.android.email.PeekableInputStream;
23 import com.android.email.mail.transport.DiscourseLogger;
194 // However, we don't want to read too much, because then it may get into an email message.
  /packages/apps/Email/src/com/android/email/provider/
AccountReconciler.java 17 package com.android.email.provider;
27 import com.android.email.NotificationController;
28 import com.android.email.R;
29 import com.android.email.service.EmailServiceUtils;
45 * Get all AccountManager accounts for all email types.
92 * Note that the duplication of account information is caused by the Email application's
229 // it still works pretty well because there is nowhere in the email app to delete the
230 // account. You have to go to Settings, so it's not user visible that the Email app
  /packages/apps/Email/tests/src/com/android/email/
DBTestHelper.java 17 package com.android.email;
19 import com.android.email.provider.AttachmentProvider;
20 import com.android.email.provider.ContentCache;
21 import com.android.email.provider.EmailProvider;
50 * A simple {@link Context} that returns {@link MyProvider} as the email content provider.
GroupMessagingListenerUnitTests.java 17 package com.android.email;
MessagingControllerUnitTests.java 17 package com.android.email;
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
DiscourseLoggerTest.java 17 package com.android.email.mail.transport;
SmtpSenderUnitTests.java 17 package com.android.email.mail.transport;
23 import com.android.email.DBTestHelper;
24 import com.android.email.mail.Transport;
25 import com.android.email.provider.EmailProvider;
43 * runtest -c com.android.email.mail.transport.SmtpSenderUnitTests email
198 attachment.mContentUri = "content://com.android.email/1/1";
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
change_picture_options_handler.cc 227 DCHECK(!user->email().empty());
310 user->email(), UserImage::CreateAndEncode(previous_image_));
315 user->email(), previous_image_index_);
325 user_image_manager->SaveUserDefaultImageIndex(user->email(), image_index);
342 user_image_manager->SaveUserImageFromProfileImage(user->email());
369 user_manager->GetLoggedInUser()->email(), path);
380 user_manager->GetLoggedInUser()->email(),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
header.py 3 # Contact: email-sig@python.org
16 import email.quoprimime namespace
17 import email.base64mime namespace
19 from email.errors import HeaderParseError
20 from email.charset import Charset
58 _max_append = email.quoprimime._max_append
71 An email.errors.HeaderParseError may be raised when certain decoding error
99 dec = email.quoprimime.header_decode(encoded)
105 dec = email.base64mime.decode(encoded)
351 # Each encoding can be email.utils.QP (quoted-printable, fo
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email_renamed.py 2 # Contact: email-sig@python.org
3 # email package unit tests
14 import email namespace
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.mime.application import MIMEApplication
22 from email.mime.audio import MIMEAudi
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
header.py 3 # Contact: email-sig@python.org
16 import email.quoprimime namespace
17 import email.base64mime namespace
19 from email.errors import HeaderParseError
20 from email.charset import Charset
58 _max_append = email.quoprimime._max_append
71 An email.errors.HeaderParseError may be raised when certain decoding error
99 dec = email.quoprimime.header_decode(encoded)
105 dec = email.base64mime.decode(encoded)
351 # Each encoding can be email.utils.QP (quoted-printable, fo
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email_renamed.py 2 # Contact: email-sig@python.org
3 # email package unit tests
14 import email namespace
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.mime.application import MIMEApplication
22 from email.mime.audio import MIMEAudi
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_utl.c 72 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email);
521 ASN1_IA5STRING *email; local
524 /* Now add any email address(es) to STACK */
530 email = X509_NAME_ENTRY_get_data(ne);
531 if(!append_ia5(&ret, email)) return NULL;
547 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email)
551 if(email->type != V_ASN1_IA5STRING) return 1;
552 if(!email->data || !email->length) return 1;
556 if(sk_OPENSSL_STRING_find(*sk, (char *)email->data) != -1) return 1
    [all...]
  /external/openssl/crypto/x509v3/
v3_utl.c 72 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email);
521 ASN1_IA5STRING *email; local
524 /* Now add any email address(es) to STACK */
530 email = X509_NAME_ENTRY_get_data(ne);
531 if(!append_ia5(&ret, email)) return NULL;
547 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email)
551 if(email->type != V_ASN1_IA5STRING) return 1;
552 if(!email->data || !email->length) return 1;
556 if(sk_OPENSSL_STRING_find(*sk, (char *)email->data) != -1) return 1
    [all...]
  /external/chromium_org/tools/dromaeo_benchmark_runner/
dromaeo_benchmark_runner.py 66 parser.add_option("-e", "--email", dest="email",
93 def __init__(self, email, spreadsheet_title):
112 self.gd_client.email = email
113 self.gd_client.password = getpass.getpass('Password for %s: ' % email)
232 spreadsheet_writer = SpreadsheetWriter(options.email,
  /packages/apps/Contacts/src/com/android/contacts/
SplitAggregateView.java 23 import android.provider.ContactsContract.CommonDataKinds.Email;
48 * and additional data such as a nickname, email address or phone number, whichever
58 Data.IS_PRIMARY, StructuredName.DISPLAY_NAME, Nickname.NAME, Email.DATA,
69 int EMAIL = 7;
121 String email; field in class:SplitAggregateView.RawContactInfo
133 if (email != null) {
134 return email;
176 } else if (Email.CONTENT_ITEM_TYPE.equals(mimetype)) {
202 if (info.email == null || cursor.getInt(SplitQuery.IS_PRIMARY) != 0) {
203 info.email = cursor.getString(SplitQuery.EMAIL)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarEventModel.java 83 public Attendee(String name, String email) {
84 this(name, email, Attendees.ATTENDEE_STATUS_NONE, null, null);
86 public Attendee(String name, String email, int status, String identity,
89 mEmail = email;
350 for (String email : emailArray) {
351 if (!TextUtils.isEmpty(email) && email.contains("@")) {
352 email = email.trim();
353 if (!mAttendeesList.containsKey(email)) {
472 String email = attendee.mEmail; local
    [all...]
  /external/chromium/chrome/browser/sync/util/
user_settings.cc 81 string UserSettings::email() const { function in class:browser_sync::UserSettings
87 // Multiple email addresses can map to the same Google Account. This table
88 // keeps a map of sign-in email addresses to primary Google Account email
157 " (email, service_name, service_token, "
158 " PRIMARY KEY(email, service_name) ON CONFLICT REPLACE)");
221 " (email, key, value, "
222 " PRIMARY KEY(email, key) ON CONFLICT REPLACE)");
308 "UPDATE settings SET email = ? WHERE email = ?")
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
UsimPhoneBookManager.java 158 // So we read the IAP file and then read the email records.
177 Rlog.e(LOG_TAG, "Error: Email file is empty");
221 // might be a record with only email
231 // email records, just to be sure.
264 Rlog.e(LOG_TAG, "Error: Improper ICC card: No email record for ADN, continuing");
273 String email = readEmailRecord(i); local
275 if (email == null || email.equals("")) {
284 val.add(email);
298 // The length of the record is X+2 byte, where X bytes is the email addres
299 String email = IccUtils.adnStringFieldToString(emailRec, 0, emailRec.length - 2); local
    [all...]
  /packages/apps/Email/src/com/android/email/service/
EmailBroadcastProcessorService.java 17 package com.android.email.service;
37 import com.android.email.Preferences;
38 import com.android.email.R;
39 import com.android.email.SecurityPolicy;
40 import com.android.email.activity.setup.AccountSettings;
41 import com.android.email.provider.AccountReconciler;
75 // Dialing "*#*#36245#*#*" to open the debug screen. "36245" = "email"
80 private static final String ACTION_DEVICE_POLICY_ADMIN = "com.android.email.devicepolicy";
111 * Entry point for {@link com.android.email.SecurityPolicy.PolicyAdmin}. These will
113 * com.android.email.SecurityPolicy#onDeviceAdminReceiverMessage(Context, int)}
    [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/
RecentMailboxManagerTest.java 17 package com.android.email.activity;
24 import com.android.email.Controller;
25 import com.android.email.DBTestHelper;
26 import com.android.email.MockClock;
27 import com.android.email.provider.ContentCache;
28 import com.android.email.provider.ProviderTestUtils;
40 * runtest -c com.android.email.activity.RecentMailboxManagerTest email
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 213 String email = extractNameAsString(((GeneralSubtree)it.next()) local
218 if (email != null)
220 intersect.add(email);
230 intersectEmail(email, _permitted, intersect);
237 private Set unionEmail(Set excluded, String email)
241 if (email == null)
245 excluded.add(email);
257 unionEmail(_excluded, email, union);
479 private void checkPermittedEmail(Set permitted, String email)
493 if (emailIsConstrained(email, str)
    [all...]

Completed in 1056 milliseconds

<<11121314151617181920>>