Searched refs:getDisplayName (Results 1 - 25 of 65) sorted by relevance

123

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DSubscriptionInfoTest.java49 assertEquals("T-mobile", mSubscriptionInfoUT.getDisplayName());
70 assertEquals("T-mobile", mSubscriptionInfoUT.getDisplayName());
72 assertEquals("Verizon", mSubscriptionInfoUT.getDisplayName());
/frameworks/base/core/java/com/android/internal/app/
H A DLocaleHelper.java112 public static String getDisplayName(Locale locale, Locale displayLocale, boolean sentenceCase) { method in class:LocaleHelper
116 : ULocale.getDisplayName(locale.toLanguageTag(), displayULocale);
127 public static String getDisplayName(Locale locale, boolean sentenceCase) { method in class:LocaleHelper
128 return getDisplayName(locale, Locale.getDefault(), sentenceCase);
176 localeNames[i] = LocaleHelper.getDisplayName(locales.get(i), dispLocale, false);
H A DLocalePicker.java141 getDisplayName(previous.locale, specialLocaleCodes, specialLocaleNames));
143 previous.label = toTitleCase(getDisplayName(
147 getDisplayName(l, specialLocaleCodes, specialLocaleNames)));
150 getDisplayName(l, specialLocaleCodes, specialLocaleNames)), l));
211 private static String getDisplayName( method in class:LocalePicker
221 return l.getDisplayName(l);
H A DLocaleStore.java117 LocaleHelper.getDisplayName(mLocale, mLocale, true /* sentence case */);
141 return LocaleHelper.getDisplayName(mLocale, true /* sentence case */);
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZonePickerUtils.java88 String displayName = getDisplayName(tz, time.isDst != 0);
161 private String getDisplayName(TimeZone tz, boolean daylightTime) { method in class:TimeZonePickerUtils
164 return tz.getDisplayName(daylightTime, TimeZone.LONG, Locale.getDefault());
180 return tz.getDisplayName(daylightTime, TimeZone.LONG, Locale.getDefault());
H A DTimeZoneInfo.java202 sb.append(tz.getDisplayName(false /* daylightTime */, TimeZone.LONG));
204 sb.append(tz.getDisplayName(false /* daylightTime */, TimeZone.SHORT));
207 sb.append(tz.getDisplayName(true, TimeZone.LONG));
209 sb.append(tz.getDisplayName(true, TimeZone.SHORT));
278 return this.mTz.getDisplayName(Locale.getDefault()).compareTo(
279 other.mTz.getDisplayName(Locale.getDefault()));
H A DTimeZoneData.java198 tz.mDisplayName = tz.mTz.getDisplayName(tz.mTz.inDaylightTime(date),
241 String name = tz.mTz.getDisplayName();
451 tz.getDisplayName());
457 tz.getDisplayName());
/frameworks/opt/chips/sample/src/com/android/ex/chips/sample/
H A DMainActivity.java76 Log.i("ChipsSample", entry.getDisplayName() + " recipient chip added");
81 Log.i("ChipsSample", entry.getDisplayName() + " recipient chip removed");
/frameworks/base/telephony/java/com/android/ims/internal/uce/presence/
H A DPresResInfo.java65 public String getDisplayName() { method in class:PresResInfo
/frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
H A DSimpleRecipientChip.java43 mDisplay = entry.getDisplayName();
/frameworks/base/telecomm/java/android/telecom/
H A DConferenceParticipant.java138 public String getDisplayName() { method in class:ConferenceParticipant
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipProfile.java108 mDisplayName = profile.getDisplayName();
385 public String getDisplayName() { method in class:SipProfile
386 return mAddress.getDisplayName();
/frameworks/base/core/jni/
H A Dandroid_view_InputDevice.cpp40 ScopedLocalRef<jstring> nameObj(env, env->NewStringUTF(deviceInfo.getDisplayName().string()));
/frameworks/native/include/input/
H A DInputDevice.h84 inline const String8& getDisplayName() const { function in class:android::InputDeviceInfo
/frameworks/opt/chips/src/com/android/ex/chips/
H A DDefaultPhotoManager.java75 Log.d(TAG, "No photo cache for " + entry.getDisplayName()
H A DRecipientAlternatesAdapter.java306 if (!TextUtils.isEmpty(entry1.getDisplayName())
307 && TextUtils.isEmpty(entry2.getDisplayName())) {
311 if (!TextUtils.isEmpty(entry2.getDisplayName())
312 && TextUtils.isEmpty(entry1.getDisplayName())) {
317 if (!TextUtils.equals(entry1.getDisplayName(), entry1.getDestination())
318 && TextUtils.equals(entry2.getDisplayName(), entry2.getDestination())) {
322 if (!TextUtils.equals(entry2.getDisplayName(), entry2.getDestination())
323 && TextUtils.equals(entry1.getDisplayName(), entry1.getDestination())) {
H A DDropdownChipLayouter.java179 bindDrawableToDeleteView(deleteDrawable, entry.getDisplayName(), viewHolder.deleteView);
470 return getStyledResults(constraint, entry.getDisplayName(), entry.getDestination());
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSubtype.java243 public CharSequence getDisplayName( method in class:SpellCheckerSubtype
246 final String localeStr = locale != null ? locale.getDisplayName() : mSubtypeLocale;
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiUtils.java292 info.getVendorId(), info.getDisplayName(), newPowerStatus);
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.h171 const String8& getDisplayName() const { return mDisplayName; } function in class:android::DisplayDevice
/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
H A DInputMethodSettingsImpl.java90 sb.append(subtype.getDisplayName(context, imi.getPackageName(),
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java136 assertEquals("test1", parent.getDisplayName());
137 assertEquals("test2", child.getDisplayName());
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiDeviceInfo.java409 public String getDisplayName() { method in class:HdmiDeviceInfo
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSimPinView.java89 CharSequence displayName = info != null ? info.getDisplayName() : ""; // don't crash
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/datetime/
H A DZoneGetter.java209 return names.getDisplayName(tz.getID(), nameType, now.getTime());

Completed in 6632 milliseconds

123