HomeSort by relevance Sort by last modified time
    Searched refs:EMAIL (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
W3cHints.java 37 public static final String EMAIL = "email";
AutofillHints.java 168 case W3cHints.EMAIL:
  /external/e2fsprogs/contrib/
e2croncheck 13 # and "EMAIL" to be your e-mail address
24 EMAIL=sysadmin@example.com
41 if test -n "$RPT-EMAIL"; then
42 mail -s "E2fsck of /dev/${VG}/${VOLUME} failed!" $EMAIL < $TMPFILE
  /packages/apps/Settings/src/com/android/settings/overlay/
SupportFeatureProvider.java 40 @IntDef({SupportType.EMAIL, SupportType.PHONE, SupportType.CHAT})
43 int EMAIL = 1;
  /packages/apps/Contacts/src/com/android/contacts/logging/
QuickContactEvent.java 72 public static final int EMAIL = 13;
  /frameworks/opt/chips/tests/src/com/android/ex/chips/
RecipientAlternatesAdapterTest.java 31 MatrixCursor c = new MatrixCursor(Queries.EMAIL.getProjection());
144 RecipientEntry.constructTopLevelEntry("2@android.com", DisplayNameSources.EMAIL,
159 RecipientEntry.constructTopLevelEntry("Android", DisplayNameSources.EMAIL,
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/
W3cHints.java 81 public static final String EMAIL = "email";
  /frameworks/base/core/java/android/bluetooth/
BluetoothMasInstance.java 81 public static final int EMAIL = 0x01;
SdpMasRecord.java 32 public static final int EMAIL = 0x01;
  /packages/apps/Settings/src/com/android/settings/applications/
EnterpriseDefaultApps.java 37 EMAIL(new Intent[] {
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
Message.java 142 if ("EMAIL".equals(s)) {
143 return Type.EMAIL;
333 UNKNOWN, EMAIL, SMS_GSM, SMS_CDMA, MMS
Bmessage.java 168 EMAIL, SMS_GSM, SMS_CDMA, MMS
  /frameworks/opt/chips/src/com/android/ex/chips/
Queries.java 22 import android.provider.ContactsContract.CommonDataKinds.Email;
27 * Phone and Email queries for supporting Chips UI.
41 ContactsContract.CommonDataKinds.Email.MIMETYPE // 9
51 public static final Query EMAIL = new Query(new String[]{
53 Email.DATA, // 1
54 Email.TYPE, // 2
55 Email.LABEL, // 3
56 Email.CONTACT_ID, // 4
57 Email._ID, // 5
61 ContactsContract.CommonDataKinds.Email.MIMETYPE //
    [all...]
RecipientAlternatesAdapter.java 49 * queried by email or by phone number.
100 query = Queries.EMAIL;
157 matchesNotFound, Queries.EMAIL, callback, permissionsCheckListener);
270 * results is just the email address, and the other has a name and photo, so we want
290 * Given two {@link RecipientEntry}s for the same email address, this will return the one that
401 projection = Queries.EMAIL.getProjection();
404 uri = Queries.EMAIL.getContentUri();
413 desiredMimeType = ContactsContract.CommonDataKinds.Email.CONTENT_ITEM_TYPE;
  /external/valgrind/auxprogs/
nightly-build-summary 79 # Search for a line indicating that this is an email containing
280 open (EMAIL, ">$i");
281 print EMAIL $page;
282 close(EMAIL);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
CsrUtil.java 30 private static final String EMAIL = "android-tv-remote-support@google.com";
89 new GeneralName(GeneralName.rfc822Name, EMAIL)));
  /external/toolchain-utils/cros_utils/
tabulator.py 971 EMAIL = 4
1013 elif self._output_type in [self.EMAIL, self.HTML]:
1028 elif self._output_type in [self.EMAIL, self.HTML]:
1059 if self._output_type in [self.PLAIN, self.CONSOLE, self.EMAIL]:
1088 if self._output_type in [self.CONSOLE, self.PLAIN, self.EMAIL]:
1096 if self._output_type in [self.PLAIN, self.CONSOLE, self.TSV, self.EMAIL]:
1102 if self._output_type in [self.PLAIN, self.CONSOLE, self.TSV, self.EMAIL]
1240 email = GetComplexTable(runs, labels, TablePrinter.EMAIL) variable
    [all...]
  /test/framework/harnesses/host_controller/build/
build_provider_pab.py 63 EMAIL: string, email constant for userinfo JSON
74 _userinfo_file: location of file containing email and password
93 EMAIL = 'email'
117 "email" and "password" string fields.
121 # this should be a JSON file with "email" and "password" string fields
146 def GetXSRFToken(self, email=None, password=None):
147 """Get XSRF token. Prompt if email/password not provided.
150 email: string, optional. Gmail account of user logging i
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapUtils.java 104 NONE, EMAIL, SMS_GSM, SMS_CDMA, MMS, IM;
285 case EMAIL:
319 case EMAIL:
370 return TYPE.EMAIL;
BluetoothMapMasInstance.java 104 public static final String TYPE_EMAIL_STR = "EMAIL";
326 if (mAccount.getType() == TYPE.EMAIL) {
335 if (mAccount.getType() == TYPE.EMAIL) {
BluetoothMapAccountLoader.java 87 ? BluetoothMapUtils.TYPE.EMAIL : BluetoothMapUtils.TYPE.IM;
160 // Get the list of accounts from the email apps content resolver (if possible)
  /packages/apps/Settings/tests/robotests/src/com/android/settings/enterprise/
EnterpriseSetDefaultAppsPreferenceControllerTest.java 93 setEnterpriseSetDefaultApps(EnterpriseDefaultApps.EMAIL.getIntents(), 8);
  /packages/providers/CalendarProvider/
maketests.py 6 EMAIL = "onoratoj@gmail.com"
  /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;
179 } else if (Email.CONTENT_ITEM_TYPE.equals(mimetype)) {
205 if (info.email == null || cursor.getInt(SplitQuery.IS_PRIMARY) != 0) {
206 info.email = cursor.getString(SplitQuery.EMAIL)
    [all...]
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
FilledAutofillFieldCollection.java 90 case W3cHints.EMAIL:

Completed in 1114 milliseconds

1 2 3 4