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

1 2 3 4 5 67 8 91011>>

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/about/
LicenseActivity.java 27 import android.text.TextUtils;
49 if (TextUtils.isEmpty(path)) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/bluetooth/
BluetoothNameUtils.java 19 import android.text.TextUtils;
76 if (TextUtils.isEmpty(cs)) {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/
PublicPreferenceActivity.java 25 import android.text.TextUtils;
61 if (!TextUtils.equals(param, MailPreferenceActivity.PREFERENCE_FRAGMENT_ID)) {
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
HelpUrl.java 22 import android.text.TextUtils;
48 if (TextUtils.isEmpty(topic)) {
VeiledAddressMatcher.java 20 import android.text.TextUtils;
102 if (!TextUtils.isEmpty(pattern)) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
DeadKeyCombiner.java 19 import android.text.TextUtils;
38 if (TextUtils.isEmpty(mDeadSequence)) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Constants.java 133 public static final class TextUtils {
135 * Capitalization mode for {@link android.text.TextUtils#getCapsMode}: don't capitalize
137 * {@link android.text.TextUtils#CAP_MODE_CHARACTERS},
138 * {@link android.text.TextUtils#CAP_MODE_WORDS}, and
139 * {@link android.text.TextUtils#CAP_MODE_SENTENCES}.
141 // TODO: Straighten this out. It's bizarre to have to use android.text.TextUtils.CAP_MODE_*
142 // except for OFF that is in Constants.TextUtils.
145 private TextUtils() {
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/text/
TextUtils.java 19 public class TextUtils {
20 private TextUtils() { /* cannot be instantiated */ }
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
ProviderUtil.java 24 import android.text.TextUtils;
44 if (!TextUtils.isEmpty(name)) {
  /frameworks/base/core/java/android/os/
Build.java 19 import android.text.TextUtils;
616 if (TextUtils.isEmpty(finger)) {
637 if (TextUtils.isEmpty(SystemProperties.get("ro.build.fingerprint"))) {
656 if (TextUtils.isEmpty(system)) {
661 if (!TextUtils.isEmpty(vendor)) {
  /frameworks/base/telecomm/java/android/telecom/
DisconnectCause.java 23 import android.text.TextUtils;
179 CharSequence label = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
180 CharSequence description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
195 TextUtils.writeToParcel(mDisconnectLabel, destination, flags);
196 TextUtils.writeToParcel(mDisconnectDescription, destination, flags);
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardUtilsTests.java 18 import android.text.TextUtils;
93 assertTrue(TextUtils.isEmpty(VCardUtils.toStringAsV30ParamValue("")));
94 assertTrue(TextUtils.isEmpty(VCardUtils.toStringAsV30ParamValue(null)));
95 assertTrue(TextUtils.isEmpty(VCardUtils.toStringAsV30ParamValue(" \t")));
109 assertTrue(TextUtils.isEmpty(
  /packages/apps/ContactsCommon/src/com/android/contacts/common/location/
CountryDetector.java 13 import android.text.TextUtils;
135 if (TextUtils.isEmpty(result)) {
138 if (TextUtils.isEmpty(result)) {
141 if (TextUtils.isEmpty(result)) {
144 if (TextUtils.isEmpty(result)) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
HanziToPinyin.java 19 import android.text.TextUtils;
117 if (TextUtils.isEmpty(token.target) ||
118 TextUtils.equals(token.source, token.target)) {
125 if (!hasChineseTransliterator() || TextUtils.isEmpty(input)) {
138 if (!hasChineseTransliterator() || TextUtils.isEmpty(input)) {
LocaleSet.java 19 import android.text.TextUtils;
104 !TextUtils.equals(primaryLocale.toLanguageTag(), "und")) {
108 !TextUtils.equals(secondaryLocale.toLanguageTag(), "und")) {
173 if (locale == null || !TextUtils.equals(locale.getLanguage(), CHINESE_LANGUAGE)) {
177 if (!TextUtils.isEmpty(locale.getScript())) {
195 if (locale == null || !TextUtils.equals(locale.getLanguage(), CHINESE_LANGUAGE)) {
199 if (!TextUtils.isEmpty(locale.getScript())) {
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDisplayUtils.java 40 import android.text.TextUtils;
67 if (!TextUtils.isEmpty(displayName)) {
76 if (!TextUtils.isEmpty(altDisplayName)) {
88 if (!TextUtils.isEmpty(phoneticName)) {
103 if (!TextUtils.isEmpty(directoryDisplayName)) {
105 } else if (!TextUtils.isEmpty(directoryType)) {
132 if (TextUtils.isEmpty(company)) {
135 if (TextUtils.isEmpty(title)) {
148 if (!TextUtils.isEmpty(combined)) {
244 if (!TextUtils.isEmpty(textToDisplay))
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Message.java 29 import android.text.TextUtils;
252 return TextUtils.equals(this.getFrom(), o.getFrom()) &&
256 TextUtils.equals(this.getTo(), o.getTo()) &&
257 TextUtils.equals(this.getCc(), o.getCc()) &&
258 TextUtils.equals(this.getBcc(), o.getBcc()) &&
259 TextUtils.equals(this.subject, o.subject) &&
260 TextUtils.equals(this.bodyHtml, o.bodyHtml) &&
261 TextUtils.equals(this.bodyText, o.bodyText) &&
367 uri = !TextUtils.isEmpty(messageUriStr) ? Uri.parse(messageUriStr) : null;
369 conversationUri = !TextUtils.isEmpty(convUriStr) ? Uri.parse(convUriStr) : null
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallTracker.java 23 import android.text.TextUtils;
184 if (!TextUtils.isEmpty(testEn)) {
223 if (!TextUtils.isEmpty(entry[0]) && dialNumber.equals(entry[0])) {
224 if (tmpArray.length >= 2 && !TextUtils.isEmpty(tmpArray[1])) {
233 if(!TextUtils.isEmpty(tmpArray[0]) && tmpArray[0].endsWith("MDN")) {
235 if (!TextUtils.isEmpty(mdn) ) {
252 if (!TextUtils.isEmpty(outNumber)) {
  /frameworks/support/v4/java/android/support/v4/media/
MediaDescriptionCompat.java 24 import android.text.TextUtils;
79 mTitle = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
80 mSubtitle = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
81 mDescription = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
158 TextUtils.writeToParcel(mTitle, dest, flags);
159 TextUtils.writeToParcel(mSubtitle, dest, flags);
160 TextUtils.writeToParcel(mDescription, dest, flags);
  /frameworks/support/v4/java/android/support/v4/media/session/
PlaybackStateCompat.java 23 import android.text.TextUtils;
238 mErrorMessage = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
268 TextUtils.writeToParcel(mErrorMessage, dest, flags);
431 mName = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
439 TextUtils.writeToParcel(mName, dest, flags);
535 if (TextUtils.isEmpty(action)) {
539 if (TextUtils.isEmpty(name)) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactsUtils.java 26 import android.text.TextUtils;
95 * first checking {@link TextUtils#isEmpty(CharSequence)} to handle null.
98 return !TextUtils.isEmpty(str) && TextUtils.isGraphic(str);
119 return TextUtils.equals(a.getAction(), b.getAction());
160 if (TextUtils.isEmpty(data)) {
167 if (TextUtils.isEmpty(host)) {
191 if (TextUtils.isEmpty(data)) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
CapsModeUtilsTests.java 22 import android.text.TextUtils;
40 final int c = TextUtils.CAP_MODE_CHARACTERS;
41 final int w = TextUtils.CAP_MODE_WORDS;
42 final int s = TextUtils.CAP_MODE_SENTENCES;
53 final int c = TextUtils.CAP_MODE_CHARACTERS;
54 final int w = TextUtils.CAP_MODE_WORDS;
55 final int s = TextUtils.CAP_MODE_SENTENCES;
  /packages/services/Mms/src/com/android/mms/service/
ApnSettings.java 25 import android.text.TextUtils;
103 if (!TextUtils.isEmpty(apnName)) {
127 if (TextUtils.isEmpty(mmscUrl)) {
137 if (!TextUtils.isEmpty(proxyAddress)) {
170 if (TextUtils.isEmpty(value)) {
206 return !TextUtils.isEmpty(mProxyAddress);
211 if (TextUtils.isEmpty(types)) {
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 30 import android.text.TextUtils;
121 if (!TextUtils.isEmpty(number)) {
149 if (!TextUtils.isEmpty(address)) {
163 if (!TextUtils.isEmpty(address)) {
171 if (!TextUtils.isEmpty(url)) {
197 if (!TextUtils.isEmpty(host) && !TextUtils.isEmpty(data)) {
226 if (!TextUtils.isEmpty(postalAddress)) {
331 if (!TextUtils.equals(mMimeType, that.mMimeType)
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
AttachmentUtilities.java 28 import android.text.TextUtils;
227 if (isGenericType || TextUtils.isEmpty(mimeType)) {
228 if (!TextUtils.isEmpty(fileExtension)) {
231 if (TextUtils.isEmpty(resultType)) {
242 if (TextUtils.isEmpty(resultType)) {
255 if (!TextUtils.isEmpty(fileName)) {
333 if (!TextUtils.isEmpty(fileName)) {
411 if (TextUtils.isEmpty(attachment.mFileName)) {
432 final String mimeType = TextUtils.isEmpty(attachment.mMimeType) ?

Completed in 2308 milliseconds

1 2 3 4 5 67 8 91011>>