Searched refs:isGraphic (Results 1 – 10 of 10) sorted by relevance
43 assertFalse(ContactsUtils.isGraphic(null)); in testIsGraphicNull()47 assertFalse(ContactsUtils.isGraphic("")); in testIsGraphicEmpty()51 assertFalse(ContactsUtils.isGraphic(" ")); in testIsGraphicSpaces()55 assertTrue(ContactsUtils.isGraphic(".")); in testIsGraphicPunctuation()
249 if (web != null && TextUtils.isGraphic(web.getWebsite())){265 if (TextUtils.isGraphic(birthday)){274 if (TextUtils.isGraphic(note.getNote())){
121 public static boolean isGraphic(CharSequence str) { in isGraphic() method in ContactsUtils122 return !TextUtils.isEmpty(str) && TextUtils.isGraphic(str); in isGraphic()
489 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()
383 public static boolean isGraphic(CharSequence str) { in isGraphic() method in ContactsUtils384 return !TextUtils.isEmpty(str) && TextUtils.isGraphic(str); in isGraphic()
301 final boolean couldHide = (!ContactsUtils.isGraphic(value) && field.optional); in setValues()
445 if (ContactsUtils.isGraphic(customText)) { in createCustomDialog()
367 if (phoneNumber == null || !TextUtils.isGraphic(phoneNumber)) { in onKeyDown()
522 if (mLastNumber == null || !TextUtils.isGraphic(mLastNumber)) { in placeCall()
452 if (!TextUtils.isEmpty(name) && TextUtils.isGraphic(name)) { in getNameForCall()