/packages/apps/Contacts/src/com/android/contacts/activities/ |
ShowOrCreateActivity.java | 28 import android.provider.ContactsContract.CommonDataKinds.Email; 69 Email.CONTACT_ID, 70 Email.LOOKUP_KEY, 130 mCreateExtras.putString(Intents.Insert.EMAIL, ssp); 132 Uri uri = Uri.withAppendedPath(Email.CONTENT_FILTER_URI, Uri.encode(ssp));
|
/packages/apps/Settings/src/com/android/settings/enterprise/ |
EnterpriseSetDefaultAppsListPreferenceController.java | 188 case EMAIL:
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapObexServer.java | 150 if (account.getType() == TYPE.EMAIL) { 194 if (mAccount.getType() == TYPE.EMAIL) { 267 * Recursively adds folders based on the folders in the email content provider. 707 if ((message.getType().equals(TYPE.EMAIL) && (folderElement.getFolderId() == -1)) || ( [all...] |
BluetoothMapAppObserver.java | 36 * Class to construct content observers for for email applications on the system. 178 * @param app app item for the package that supports MAP email 288 msgType = BluetoothMapUtils.TYPE.EMAIL;
|
BluetoothMapContentObserver.java | 385 * Currently we only have data for IM / email contacts 614 if (type == TYPE.EMAIL || type == TYPE.IM) { 629 if (msgType == TYPE.EMAIL || msgType == TYPE.IM) { 2650 String email = recipient.getFirstEmail(); local [all...] |
BluetoothMapContent.java | 481 type = TYPE.EMAIL; // Just used for handle encoding 928 String email = tokens[i].getAddress(); local 954 String email = tokens[i].getAddress(); local 979 String email = tokens[i].getAddress(); local 4148 StringBuilder email = new StringBuilder(""); local [all...] |
BluetoothMapbMessage.java | 47 protected TYPE mType = null; // SMS/MMS/EMAIL 79 * @param emailAddresses a String[] of email addresses 98 * @param emailAddresses a String[] of email addresses 116 * @param emailAddresses a String[] of email addresses if available, else null 138 * @param emailAddresses a String[] of email addresses 226 sb.append("EMAIL:").append(emailAddress).append("\r\n"); 281 } else if (line.startsWith("EMAIL:")) { 288 // only keep actual email address 291 // Empty email address entry - ignore 612 case EMAIL [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/ |
AllIntentsActivity.java | 32 import android.provider.ContactsContract.CommonDataKinds.Email; 179 new Intent(Intent.ACTION_PICK, Email.CONTENT_URI)); 252 intent.putExtra(Insert.EMAIL, "android@android.com"); 278 intent.putExtra(Insert.EMAIL, "a"); 633 row2.put(Data.MIMETYPE, Email.CONTENT_ITEM_TYPE); 634 row2.put(Email.TYPE, Email.TYPE_CUSTOM); 635 row2.put(Email.LABEL, "Green Bot"); 636 row2.put(Email.ADDRESS, "android@android.com");
|
/developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/ |
OtherMetadataFragment.java | 298 EMAIL("email"),
|
/developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/ |
OtherMetadataFragment.java | 298 EMAIL("email"),
|
/development/samples/browseable/LNotifications/src/com.example.android.lnotifications/ |
OtherMetadataFragment.java | 298 EMAIL("email"),
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
ContactsIntentResolver.java | 27 import android.provider.ContactsContract.CommonDataKinds.Email; 81 } else if (Email.CONTENT_TYPE.equals(resolvedType)) { 101 } else if (Email.CONTENT_TYPE.equals(resolvedType)) { 147 // or email is specified, in that priority. 152 query = intent.getStringExtra(Insert.EMAIL);
|
/frameworks/base/core/java/android/provider/ |
Contacts.java | 64 * Signifies an email address row that is stored in the ContactMethods table 262 * else if email is not null email. 425 * The ID of the persons preferred email. [all...] |
ContactsContract.java | 71 * as a phone number or email addresses. The set of data kinds that can be 160 * {@link CommonDataKinds.Email#CONTENT_URI}, 173 * For example, in an email composition screen, its implementation can specify an account when 190 * include persons contacted via phone (not email, sms, etc.) 213 * {@link CommonDataKinds.Email#CONTENT_URI Email.CONTENT_URI}, and 290 * in email and phone lookup functionalities, it should also implement 291 * {@link CommonDataKinds.Email#CONTENT_FILTER_URI CommonDataKinds.Email.CONTENT_FILTER_URI} 590 * allow creation of shortcuts for data items like email, phone or postal address [all...] |
/frameworks/opt/chips/src/com/android/ex/chips/ |
BaseRecipientAdapter.java | 223 * An asynchronous filter used for loading two data sets: email rows from the local 269 Log.w(TAG, "null cursor returned for default Email filter query."); 510 * First, each destination (an email address or a phone number) with a valid contactId is 577 * Constructor for email queries. 603 mQueryMode = Queries.EMAIL; 607 mQueryMode = Queries.EMAIL; 659 * Used to replace email addresses with chips. Default behavior [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/ |
MceStateMachine.java | 599 case EMAIL:
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
BluetoothPbapVcardManager.java | [all...] |
/packages/apps/Contacts/src/com/android/contacts/model/account/ |
BaseAccountType.java | 23 import android.provider.ContactsContract.CommonDataKinds.Email; 81 // basic format as email addresses 107 static final int EMAIL = 15; 132 return new EditType(type, Email.getTypeLabelResource(type)); 288 DataKind kind = addKind(new DataKind(Email.CONTENT_ITEM_TYPE, R.string.emailLabelsGroup, 289 Weight.EMAIL, true)); 291 kind.actionBody = new SimpleInflater(Email.DATA); 292 kind.typeColumn = Email.TYPE; 294 kind.typeList.add(buildEmailType(Email.TYPE_HOME)); 295 kind.typeList.add(buildEmailType(Email.TYPE_WORK)) [all...] |
/packages/apps/Dialer/java/com/android/contacts/common/model/account/ |
BaseAccountType.java | 23 import android.provider.ContactsContract.CommonDataKinds.Email; 103 // basic format as email addresses 127 return new EditType(type, Email.getTypeLabelResource(type)); 349 new DataKind(Email.CONTENT_ITEM_TYPE, R.string.emailLabelsGroup, Weight.EMAIL, true)); 351 kind.actionBody = new SimpleInflater(Email.DATA); 352 kind.typeColumn = Email.TYPE; 354 kind.typeList.add(buildEmailType(Email.TYPE_HOME)); 355 kind.typeList.add(buildEmailType(Email.TYPE_WORK)); 356 kind.typeList.add(buildEmailType(Email.TYPE_OTHER)) [all...] |
/developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/ |
AutofillHints.java | 47 filledAutofillField.setTextValue("email" + seed); [all...] |
/external/ltp/ |
runltp | 117 -a EMAIL_TO EMAIL all your Reports to this E-mail Address [all...] |
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/ |
ConsoleActivity.java | 130 EDIT, PREFS, EMAIL, RESIZE, COPY, PASTE; [all...] |
/external/toolchain-utils/crosperf/ |
results_report.py | 273 elif out_to == 'EMAIL': 274 out_type = TablePrinter.EMAIL 288 def __init__(self, results, email=False, experiment=None): 290 self.email = email 306 def FromExperiment(experiment, email=False): 308 return TextResultsReport(results, email, experiment) 328 """Generate the report for email and console.""" 329 output_type = 'EMAIL' if self.email else 'CONSOLE [all...] |
/frameworks/base/core/java/android/view/textclassifier/ |
TextClassifierImpl.java | 693 context.getString(com.android.internal.R.string.email), 703 .putExtra(ContactsContract.Intents.Insert.EMAIL, text), [all...] |
/packages/apps/Messaging/src/com/android/messaging/ui/ |
UIIntentsImpl.java | 212 Intents.Insert.EMAIL : Intents.Insert.PHONE;
|