Searched defs:email (Results 176 - 190 of 190) sorted by relevance

12345678

/packages/apps/Email/provider_src/com/android/email/service/
H A DImapService.java17 package com.android.email.service;
33 import com.android.email.DebugUtils;
34 import com.android.email.LegacyConversions;
35 import com.android.email.NotificationController;
36 import com.android.email.NotificationControllerCreatorHolder;
37 import com.android.email.R;
38 import com.android.email.mail.Store;
39 import com.android.email.provider.Utilities;
H A DAttachmentService.java17 package com.android.email.service;
35 import com.android.email.AttachmentInfo;
36 import com.android.email.EmailConnectivityManager;
37 import com.android.email.NotificationControllerCreatorHolder;
38 import com.android.email.NotificationController;
109 "com.android.email.AttachmentService.attachment_id";
111 "com.android.email.AttachmentService.attachment_flags";
784 // email view but they should not be able to...either because there is
786 // 2. The user is forwarding an email and the attachment has been
795 // the final recipient of this forward email migh
[all...]
/packages/apps/Email/tests/src/com/android/email/provider/
H A DProviderTests.java17 package com.android.email.provider;
37 import com.android.email.provider.EmailProvider.EmailAttachmentService;
63 * runtest -c com.android.email.provider.ProviderTests email
2227 String email = account.mEmailAddress;
2229 if (amAccount.name.equals(email)) {
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DLegacyContactsProviderTest.java285 // Remove the primary email
293 // Remove the remaining email
760 boolean phone, boolean email, String query, boolean expectIcon1Uri, String expectedIcon2,
792 if (email) {
759 assertSearchSuggestion(boolean name, boolean photo, boolean organization, boolean phone, boolean email, String query, boolean expectIcon1Uri, String expectedIcon2, String expectedText1, String expectedText2) argument
H A DBaseContactsProvider2Test.java288 protected Uri insertEmail(long rawContactId, String email) { argument
289 return insertEmail(rawContactId, email, false);
292 protected Uri insertEmail(long rawContactId, String email, boolean primary) { argument
293 return insertEmail(rawContactId, email, primary, Email.TYPE_HOME, null);
296 protected Uri insertEmail(long rawContactId, String email, boolean primary, argument
298 return insertEmail(rawContactId, email, primary, superPrimary, Email.TYPE_HOME, null);
301 protected Uri insertEmail(long rawContactId, String email, boolean primary, int type, argument
303 return insertEmail(rawContactId, email, primary, false, type, label);
306 protected Uri insertEmail(long rawContactId, String email, boolean primary, argument
311 values.put(Email.DATA, email);
1338 private final String email; field in class:BaseContactsProvider2Test.GoldenContact
1457 private String email; field in class:BaseContactsProvider2Test.GoldenContactBuilder
1528 public GoldenContactBuilder email(String value) { method in class:BaseContactsProvider2Test.GoldenContactBuilder
[all...]
H A DContactsProvider2Test.java2401 // Check if the provider detects duplicated email addresses.
2482 insertEmail(rawContactId1, "address1@email.com");
2483 insertEmail(rawContactId1, "address2@email.com");
2484 insertEmail(rawContactId1, "address3@email.com");
2486 v1.put(Email.ADDRESS, "address1@email.com");
2488 v2.put(Email.ADDRESS, "address2@email.com");
2490 v3.put(Email.ADDRESS, "address3@email.com");
2501 insertEmail(rawContactId1, "address1@email.com");
2502 insertEmail(rawContactId1, "address2@email.com", true);
2504 v1.put(Email.ADDRESS, "address1@email
8987 createContact(ContentValues values, String firstName, String givenName, String phoneNumber, String email, int presenceStatus, int timesContacted, int starred, long groupId, int chatMode) argument
8994 createContact(ContentValues values, String firstName, String givenName, String phoneNumber, String email, int presenceStatus, int timesContacted, int starred, long groupId, int chatMode, boolean isUserProfile) argument
9001 createRawContact(ContentValues values, String firstName, String givenName, String phoneNumber, String email, int presenceStatus, int timesContacted, int starred, long groupId, int chatMode) argument
9010 createRawContact(ContentValues values, String firstName, String givenName, String phoneNumber, String email, int presenceStatus, int timesContacted, int starred, long groupId, int chatMode, boolean isUserProfile) argument
9019 createRawContact(ContentValues values, String phoneNumber, String email, int presenceStatus, int timesContacted, int starred, long groupId, int chatMode) argument
9025 createRawContact(ContentValues values, String phoneNumber, String email, int presenceStatus, int timesContacted, int starred, long groupId, int chatMode, boolean isUserProfile) argument
[all...]
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventHelper.java587 Log.v(TAG, "Dropping invalid attendee email address: " + address.getAddress());
1379 public static String extractDomain(String email) { argument
1380 int separator = email.lastIndexOf('@');
1381 if (separator != -1 && ++separator < email.length()) {
1382 return email.substring(separator);
/packages/apps/Email/provider_src/com/android/email/provider/
H A DContentCache.java17 package com.android.email.provider;
28 import com.android.email.DebugUtils;
H A DEmailProvider.java17 package com.android.email.provider;
67 import com.android.email.DebugUtils;
68 import com.android.email.NotificationController;
69 import com.android.email.NotificationControllerCreatorHolder;
70 import com.android.email.Preferences;
71 import com.android.email.R;
72 import com.android.email.SecurityPolicy;
73 import com.android.email.activity.setup.AccountSecurity;
74 import com.android.email.activity.setup.AccountSettingsUtils;
75 import com.android.email
[all...]
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupFinal.java17 package com.android.email.activity.setup;
45 import com.android.email.R;
46 import com.android.email.setup.AuthenticatorSetupIntentHelper;
47 import com.android.email.service.EmailServiceUtils;
83 * $ adb shell am start -a com.android.email.FORCE_CREATE_ACCOUNT \
89 * Note: For accounts that require the full email address in the login, encode the @ as %40.
95 * $adb shell am start -a com.android.email.FORCE_CREATE_ACCOUNT \
130 // Collecting initial email and password
132 // Show the user some interstitial message after email entry
266 * email
[all...]
/packages/apps/Email/tests/src/com/android/email/mail/store/
H A DImapStoreUnitTests.java17 package com.android.email.mail.store;
30 import com.android.email.DBTestHelper;
31 import com.android.email.MockSharedPreferences;
32 import com.android.email.MockVendorPolicy;
33 import com.android.email.mail.store.ImapStore.ImapMessage;
34 import com.android.email.mail.store.imap.ImapResponse;
35 import com.android.email.mail.store.imap.ImapTestUtils;
36 import com.android.email.mail.transport.MockTransport;
71 * $ runtest -c com.android.email.mail.store.ImapStoreUnitTests email
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DUtils.java1537 * @param eventTitle The title of the event to use as the email subject.
1538 * @param body The default text for the email body.
1541 * @param ownerAccount The owner account to use as the email sender.
1549 // TODO: Return a SEND intent if no one to email to, to at least populate
1550 // a draft email with the subject (and no recipients).
1560 // Use the event title as the email subject (prepended with 'Re: ').
1568 // for email addresses. We put all data in the URI instead of using the extra
1569 // Intent fields (ie. EXTRA_CC, etc) because some email apps might not handle
1574 // We will append the first email to the 'mailto' field later (because the
1576 // here. When the email codebas
1629 isValidEmail(String email) argument
1639 isEmailableFrom(String email, String syncAccountName) argument
[all...]
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DContactsSyncParser.java705 String email; field in class:ContactsSyncParser.EmailRow
712 email = "";
716 email = token.getAddress();
723 builder.withValue(Email.DATA, email);
729 return email.equalsIgnoreCase(value);
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DUtils.java164 * Sets WebView in a restricted mode suitable for email use.
1088 * case-sensitive for the local-part, but nobody really wants email addresses to match
1090 * @param email Hello@Example.COM
1093 public static String normalizeEmailAddress(String email) { argument
1096 if (TextUtils.isEmpty(email)) {
1097 return email;
1099 String[] parts = email.split("@");
1101 LogUtils.d(LOG_TAG, "Tried to normalize a malformed email address: ", email);
1102 return email;
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java1364 * For email lookup and similar queries.
3281 // Find all data rows with the mime type "email" that are missing name lookup
3575 * Inserts name lookup rows for all email addresses in the database.
4432 public String extractHandleFromEmailAddress(String email) { argument
4433 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(email);
4446 public String extractAddressFromEmailAddress(String email) { argument
4447 Rfc822Token[] tokens = Rfc822Tokenizer.tokenize(email);
5583 * organization, email etc.
5915 public String insertNameLookupForEmail(long rawContactId, long dataId, String email) { argument
5916 if (TextUtils.isEmpty(email)) {
[all...]

Completed in 631 milliseconds

12345678