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

12

/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.java236 sb.append(tz.getDisplayName(false /* daylightTime */, TimeZone.LONG));
238 sb.append(tz.getDisplayName(false /* daylightTime */, TimeZone.SHORT));
241 sb.append(tz.getDisplayName(true, TimeZone.LONG));
243 sb.append(tz.getDisplayName(true, TimeZone.SHORT));
344 return this.mTz.getDisplayName(Locale.getDefault()).compareTo(
345 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/base/core/java/com/android/internal/app/
H A DLocalePicker.java157 getDisplayName(preprocess[finalSize-1].locale,
161 getDisplayName(preprocess[finalSize-1].locale,
165 getDisplayName(l, specialLocaleCodes, specialLocaleNames)));
169 getDisplayName(
227 private static String getDisplayName( method in class:LocalePicker
237 return l.getDisplayName(l);
/frameworks/ex/chips/src/com/android/ex/chips/
H A DSingleRecipientArrayAdapter.java57 display.setText(entry.getDisplayName());
H A DRecipientAlternatesAdapter.java252 if (!TextUtils.isEmpty(entry1.getDisplayName())
253 && TextUtils.isEmpty(entry2.getDisplayName())) {
257 if (!TextUtils.isEmpty(entry2.getDisplayName())
258 && TextUtils.isEmpty(entry1.getDisplayName())) {
263 if (!TextUtils.equals(entry1.getDisplayName(), entry1.getDestination())
264 && TextUtils.equals(entry2.getDisplayName(), entry2.getDestination())) {
268 if (!TextUtils.equals(entry2.getDisplayName(), entry2.getDestination())
269 && TextUtils.equals(entry1.getDisplayName(), entry1.getDestination())) {
H A DRecipientEntry.java183 public String getDisplayName() { method in class:RecipientEntry
H A DRecipientEditTextView.java606 !TextUtils.isEmpty(contact.getDisplayName())));
976 boolean leaveSpace = TextUtils.isEmpty(entry.getDisplayName())
977 || TextUtils.equals(entry.getDisplayName(),
1571 String display = entry.getDisplayName();
1600 String display = entry.getDisplayName();
1680 entry = RecipientEntry.constructGeneratedEntry(item.getDisplayName(),
1683 && (TextUtils.isEmpty(item.getDisplayName())
1684 || TextUtils.equals(item.getDisplayName(), destination)
H A DBaseRecipientAdapter.java312 final String displayName = entry.getDisplayName();
745 Log.d(TAG, "No photo cache for " + entry.getDisplayName()
873 String displayName = entry.getDisplayName();
/frameworks/ex/chips/src/com/android/ex/chips/recipientchip/
H A DSimpleRecipientChip.java39 mDisplay = entry.getDisplayName();
/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.cpp38 ScopedLocalRef<jstring> nameObj(env, env->NewStringUTF(deviceInfo.getDisplayName().string()));
/frameworks/base/include/androidfw/
H A DInputDevice.h77 inline const String8& getDisplayName() const { function in class:android::InputDeviceInfo
/frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
H A DInstrumentationResultPrinter.java161 failure.getDescription().getDisplayName(), failure.getTrace()));
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSubtype.java178 public CharSequence getDisplayName( method in class:SpellCheckerSubtype
181 final String localeStr = locale != null ? locale.getDisplayName() : mSubtypeLocale;
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.h134 const String8& getDisplayName() const { return mDisplayName; } function in class:android::DisplayDevice
/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
H A DInputMethodSettingsImpl.java104 sb.append(subtype.getDisplayName(context, imi.getPackageName(),
/frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/helpers/
H A DTimePickerHelper.java151 String calMer = cal.getDisplayName(Calendar.AM_PM, Calendar.SHORT, Locale.US);
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtype.java68 * the formatter. Please refer to {@link #getDisplayName} for details.
94 * the formatter. Please refer to {@link #getDisplayName} for details.
124 * the formatter. Please refer to {@link #getDisplayName} for details.
251 public CharSequence getDisplayName( method in class:InputMethodSubtype
254 final String localeStr = locale != null ? locale.getDisplayName() : mSubtypeLocale;
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java136 assertEquals("test1", parent.getDisplayName());
137 assertEquals("test2", child.getDisplayName());
/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DTestRequestBuilder.java204 return String.format("Method %s", target.getDisplayName());
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDatePickerDialog.java329 mDayOfWeekView.setText(mCalendar.getDisplayName(Calendar.DAY_OF_WEEK, Calendar.LONG,
333 mSelectedMonthTextView.setText(mCalendar.getDisplayName(Calendar.MONTH, Calendar.SHORT,
H A DDayPickerView.java431 sbuf.append(cal.getDisplayName(Calendar.MONTH, Calendar.LONG, Locale.getDefault()));
/frameworks/base/core/java/android/text/format/
H A DDateFormat.java589 return tz.getDisplayName(dst, TimeZone.SHORT);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DInputMethodsPanel.java445 return subtype.getDisplayName(

Completed in 578 milliseconds

12