Home
last modified time | relevance | path

Searched refs:EMAIL_ADDRESS (Results 1 – 12 of 12) sorted by relevance

/packages/providers/ContactsKeysProvider/tests/src/com/android/providers/contactkeys/
DE2eeContactKeysDatabaseHelperTest.java45 private static final String EMAIL_ADDRESS = "example@gmail.com"; field in E2eeContactKeysDatabaseHelperTest
78 OWNER_PACKAGE_NAME, TIME_UPDATED, DISPLAY_NAME, PHONE_NUMBER, EMAIL_ADDRESS); in testInsertAndGetContactKey()
86 PHONE_NUMBER, EMAIL_ADDRESS); in testInsertAndGetContactKey()
107 OWNER_PACKAGE_NAME, TIME_UPDATED, DISPLAY_NAME, PHONE_NUMBER, EMAIL_ADDRESS); in testUpdateContactKey()
117 OWNER_PACKAGE_NAME, timeUpdated, DISPLAY_NAME, PHONE_NUMBER, EMAIL_ADDRESS); in testUpdateContactKey()
124 DISPLAY_NAME, PHONE_NUMBER, EMAIL_ADDRESS); in testUpdateContactKey()
131 OWNER_PACKAGE_NAME, TIME_UPDATED, DISPLAY_NAME, PHONE_NUMBER, EMAIL_ADDRESS); in testRemoveContactKey()
146 OWNER_PACKAGE_NAME, TIME_UPDATED, DISPLAY_NAME, PHONE_NUMBER, EMAIL_ADDRESS); in testUpdateLocalVerificationStateContactKey()
158 PHONE_NUMBER, EMAIL_ADDRESS); in testUpdateLocalVerificationStateContactKey()
165 OWNER_PACKAGE_NAME, TIME_UPDATED, DISPLAY_NAME, PHONE_NUMBER, EMAIL_ADDRESS); in testUpdateRemoteVerificationStateContactKey()
[all …]
/packages/providers/ContactsKeysProvider/src/com/android/providers/contactkeys/
DE2eeContactKeysDatabaseHelper.java62 + E2eeContactKeys.EMAIL_ADDRESS + " TEXT, " in onCreate()
102 + E2eeContactKeys.EMAIL_ADDRESS + "," in getAllContactKeys() argument
121 E2eeContactKeys.EMAIL_ADDRESS)); in getAllContactKeys()
147 + E2eeContactKeys.EMAIL_ADDRESS + "," in getContactKeysForOwnerPackageName() argument
165 E2eeContactKeys.EMAIL_ADDRESS)); in getContactKeysForOwnerPackageName()
189 + E2eeContactKeys.EMAIL_ADDRESS + "," in getContactKey() argument
205 E2eeContactKeys.EMAIL_ADDRESS)); in getContactKey()
286 + E2eeContactKeys.EMAIL_ADDRESS in updateOrInsertContactKey() argument
298 + E2eeContactKeys.EMAIL_ADDRESS + " = ?")) { in updateOrInsertContactKey()
DE2eeContactKeysProvider.java131 String emailAddress = contactInfo.getString(E2eeContactKeys.EMAIL_ADDRESS); in updateOrInsertE2eeContactKey()
502 bundle.putString(E2eeContactKeys.EMAIL_ADDRESS, getEmail(lookupKey)); in getContactBasicInfoFromCP2()
/packages/apps/Contacts/src/com/android/contacts/list/
DEmailAddressListAdapter.java63 public static final int EMAIL_ADDRESS = 3; field in EmailAddressListAdapter.EmailQuery
152 view.showData(cursor, EmailQuery.EMAIL_ADDRESS); in bindEmailAddress()
DMultiSelectEmailAddressesListAdapter.java65 public static final int EMAIL_ADDRESS = 3; field in MultiSelectEmailAddressesListAdapter.EmailQuery
185 view.showData(cursor, EmailQuery.EMAIL_ADDRESS); in bindEmailAddress()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
DAccountUtils.java41 if (Patterns.EMAIL_ADDRESS.matcher(name).matches()) { in getDeviceAccountsEmailAddresses()
/packages/apps/Car/DebuggingRestrictionController/app/src/main/java/com/android/car/debuggingrestrictioncontroller/ui/login/
DLoginViewModel.java87 return Patterns.EMAIL_ADDRESS.matcher(username).matches(); in isUserNameValid()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/
DAddress.java73 private static final Pattern EMAIL_ADDRESS = field in Address
237 return EMAIL_ADDRESS.matcher(address).find(); in isValidAddress()
/packages/apps/Traceur/src_common/com/android/traceur/
DFileSender.java102 if (Patterns.EMAIL_ADDRESS.matcher(account.name).matches()) { in findSendToAccount()
/packages/apps/Contacts/src/com/android/contacts/compat/
DTelephonyThreadsCompat.java153 Matcher match = Patterns.EMAIL_ADDRESS.matcher(s); in isEmailAddress()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/opp/
DBluetoothOppLauncherActivity.java359 + Patterns.EMAIL_ADDRESS.pattern() in createFileForSharedContent()
385 } else if (Patterns.EMAIL_ADDRESS.matcher(matchStr).matches()) { in createFileForSharedContent()
/packages/apps/Messaging/src/com/android/messaging/sms/
DMmsSmsUtils.java99 final Matcher match = Patterns.EMAIL_ADDRESS.matcher(s); in isEmailAddress()