HomeSort by relevance Sort by last modified time
    Searched refs:TextUtils (Results 51 - 75 of 1390) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/UnifiedEmail/src/com/android/mail/perf/
SimpleTimer.java 19 import android.text.TextUtils;
72 return TextUtils.isEmpty(mSessionName) ? DEFAULT_LOG_TAG : mSessionName;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountTypeWithDataSet.java 25 import android.text.TextUtils;
46 this.accountType = TextUtils.isEmpty(accountType) ? null : accountType;
47 this.dataSet = TextUtils.isEmpty(dataSet) ? null : dataSet;
62 if (TextUtils.isEmpty(dataSet)) {
  /packages/apps/Dialer/src/com/android/dialer/calllog/
PhoneNumberDisplayHelper.java 23 import android.text.TextUtils;
80 if (!TextUtils.isEmpty(displayName)) {
84 if (TextUtils.isEmpty(number)) {
88 if (TextUtils.isEmpty(formattedNumber)) {
PhoneNumberUtilsWrapper.java 24 import android.text.TextUtils;
46 && !TextUtils.isEmpty(number) && !isLegacyUnknownNumbers(number);
79 if (TextUtils.isEmpty(number)) {
  /packages/apps/Mms/src/com/android/mms/ui/
NoConfirmationSendService.java 24 import android.text.TextUtils;
72 if (TextUtils.isEmpty(recipients)) {
81 if (TextUtils.isEmpty(message)) {
85 String[] dests = TextUtils.split(recipients, ";");
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Constants.java 21 import android.text.TextUtils;
89 final boolean validRelease = !TextUtils.isEmpty(Build.VERSION.RELEASE);
90 final boolean validId = !TextUtils.isEmpty(Build.ID);
92 && !TextUtils.isEmpty(Build.MODEL);
  /external/droiddriver/src/com/google/android/droiddriver/validators/
DefaultAccessibilityValidator.java 19 import android.text.TextUtils;
85 return !TextUtils.isEmpty(element.getContentDescription())
86 || !TextUtils.isEmpty(element.getText());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSmsManager.java 5 import android.text.TextUtils;
30 if (TextUtils.isEmpty(destinationAddress))
33 if (TextUtils.isEmpty(text))
  /frameworks/base/core/java/android/accounts/
Account.java 21 import android.text.TextUtils;
47 if (TextUtils.isEmpty(name)) {
50 if (TextUtils.isEmpty(type)) {
  /frameworks/base/core/java/android/content/pm/
PermissionGroupInfo.java 21 import android.text.TextUtils;
109 TextUtils.writeToParcel(nonLocalizedDescription, dest, parcelableFlags);
127 nonLocalizedDescription = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
  /frameworks/base/core/java/android/speech/tts/
EventLoggerV1.java 18 import android.text.TextUtils;
68 if (!TextUtils.isEmpty(mRequest.getCountry())) {
72 if (!TextUtils.isEmpty(mRequest.getVariant())) {
  /frameworks/base/core/java/android/view/inputmethod/
ExtractedText.java 21 import android.text.TextUtils;
96 TextUtils.writeToParcel(text, dest, flags);
112 res.text = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
MarqueeActivity.java 21 import android.text.TextUtils;
41 text1.setEllipsize(TextUtils.TruncateAt.MARQUEE);
49 text2.setEllipsize(TextUtils.TruncateAt.MARQUEE);
  /frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
SimpleRecipientChip.java 21 import android.text.TextUtils;
99 if (TextUtils.isEmpty(text)) {
108 return !TextUtils.isEmpty(mOriginalText) ? mOriginalText : mEntry.getDestination();
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ListRowHoverCardView.java 18 import android.text.TextUtils;
54 if (!TextUtils.isEmpty(text)) {
67 if (!TextUtils.isEmpty(text)) {
  /packages/apps/Browser/src/com/android/browser/
PreloadedTabControl.java 19 import android.text.TextUtils;
55 if (!TextUtils.isEmpty(currentUrl)) {
64 if (!TextUtils.equals(url, currentUrl)) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
EventDataItem.java 23 import android.text.TextUtils;
50 if (!TextUtils.equals(getStartDate(), that.getStartDate())) {
57 !TextUtils.equals(getLabel(), that.getLabel())) {
RelationDataItem.java 23 import android.text.TextUtils;
50 if (!TextUtils.equals(getName(), that.getName())) {
57 !TextUtils.equals(getLabel(), that.getLabel())) {
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockIconLoader.java 26 import android.text.TextUtils;
41 if (TextUtils.isEmpty(drawableId) || "0".equals(drawableId)) {
50 if (TextUtils.isEmpty(drawableId) || "0".equals(drawableId)) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LastComposedWord.java 19 import android.text.TextUtils;
85 return mActive && !TextUtils.isEmpty(mCommittedWord) && !didCommitTypedWord();
89 return TextUtils.equals(mTypedWord, mCommittedWord);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
BootCompletedReceiver.java 40 import android.text.TextUtils;
65 while (TextUtils.isEmpty(dbTime) && count != 3) {
72 if (TextUtils.isEmpty(prefTime) || !prefTime.equals(dbTime)) {
DataRowHandlerForCommonDataKind.java 23 import android.text.TextUtils;
68 final boolean hasType = !TextUtils.isEmpty(augmented.getAsString(mTypeColumn));
69 final boolean hasLabel = !TextUtils.isEmpty(augmented.getAsString(mLabelColumn));
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardTile.java 24 import android.text.TextUtils;
135 TextUtils.writeToParcel(title, dest, flags);
137 TextUtils.writeToParcel(summary, dest, flags);
153 title = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
155 summary = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
  /packages/services/Telephony/src/com/android/phone/
CallGatewayManager.java 23 import android.text.TextUtils;
146 return !TextUtils.isEmpty(name) && !TextUtils.isEmpty(gatewayUri);
176 return TextUtils.isEmpty(uri) ? null : Uri.parse(uri);
214 return TextUtils.isEmpty(packageName) || gatewayUri == null;
  /frameworks/base/core/java/android/content/
SyncAdapterType.java 19 import android.text.TextUtils;
39 if (TextUtils.isEmpty(authority)) {
42 if (TextUtils.isEmpty(accountType)) {
61 if (TextUtils.isEmpty(authority)) {
64 if (TextUtils.isEmpty(accountType)) {
78 if (TextUtils.isEmpty(authority)) {
81 if (TextUtils.isEmpty(accountType)) {

Completed in 744 milliseconds

1 23 4 5 6 7 8 91011>>