Home
last modified time | relevance | path

Searched refs:isGraphic (Results 1 – 10 of 10) sorted by relevance

/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
DContactsUtilsTests.java43 assertFalse(ContactsUtils.isGraphic(null)); in testIsGraphicNull()
47 assertFalse(ContactsUtils.isGraphic("")); in testIsGraphicEmpty()
51 assertFalse(ContactsUtils.isGraphic(" ")); in testIsGraphicSpaces()
55 assertTrue(ContactsUtils.isGraphic(".")); in testIsGraphicPunctuation()
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DVCardResourceEntry.java249 if (web != null && TextUtils.isGraphic(web.getWebsite())){
265 if (TextUtils.isGraphic(birthday)){
274 if (TextUtils.isGraphic(note.getNote())){
/packages/apps/ContactsCommon/src/com/android/contacts/common/
DContactsUtils.java121 public static boolean isGraphic(CharSequence str) { in isGraphic() method in ContactsUtils
122 return !TextUtils.isEmpty(str) && TextUtils.isGraphic(str); in isGraphic()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DRawContactModifier.java489 if (ContactsUtils.isGraphic(value)) { in isEmpty()
564 if (ContactsUtils.isGraphic(company)) { in parseExtras()
569 if (ContactsUtils.isGraphic(title)) { in parseExtras()
581 if (ContactsUtils.isGraphic(notes)) { in parseExtras()
600 if (ContactsUtils.isGraphic(name)) { in parseStructuredNameExtra()
645 if (ContactsUtils.isGraphic(phoneticName)) { in parseStructuredNameExtra()
910 final boolean validValue = (value != null && TextUtils.isGraphic(value)); in parseExtras()
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
DContactsUtils.java383 public static boolean isGraphic(CharSequence str) { in isGraphic() method in ContactsUtils
384 return !TextUtils.isEmpty(str) && TextUtils.isGraphic(str); in isGraphic()
/packages/apps/Contacts/src/com/android/contacts/editor/
DTextFieldsEditorView.java301 final boolean couldHide = (!ContactsUtils.isGraphic(value) && field.optional); in setValues()
DLabeledEditorView.java445 if (ContactsUtils.isGraphic(customText)) { in createCustomDialog()
/packages/services/Telephony/src/com/android/phone/
DSimContacts.java367 if (phoneNumber == null || !TextUtils.isGraphic(phoneNumber)) { in onKeyDown()
DEmergencyDialer.java522 if (mLastNumber == null || !TextUtils.isGraphic(mLastNumber)) { in placeCall()
/packages/services/Telecomm/src/com/android/server/telecom/ui/
DMissedCallNotifierImpl.java452 if (!TextUtils.isEmpty(name) && TextUtils.isGraphic(name)) { in getNameForCall()