/external/nist-sip/java/javax/sip/header/ |
ReplyToHeader.java | 6 String getDisplayName();
|
FromHeader.java | 13 String getDisplayName();
|
ToHeader.java | 13 String getDisplayName();
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/util/ |
TimeZoneNameProviderICU.java | 19 public String getDisplayName(String ID, boolean daylight, int style, Locale locale) { 30 String lstd = tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); 31 String ldst = tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date); 32 String sstd = tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date); 33 String sdst = tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date); 51 // tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date) : 52 // tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); 56 // tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date) : 57 // tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date);
|
CurrencyNameProviderICU.java | 28 public String getDisplayName(String currencyCode, Locale locale) {
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_NetworkInterface.java | 34 if ((theInterface.getDisplayName() 36 || (theInterface.getDisplayName() 38 || (theInterface.getDisplayName() 40 || (theInterface.getDisplayName() 42 || (theInterface.getDisplayName().equals("MS TCP Loopback interface"))) { 48 if ((theInterface.getDisplayName().equals("lo")) 49 || (theInterface.getDisplayName().equals("teredo"))) {
|
/libcore/luni/src/test/java/libcore/java/util/ |
OldTimeZoneTest.java | 86 assertEquals("GMT-06:00", tz.getDisplayName()); 88 assertEquals("Pacific Standard Time", tz.getDisplayName()); 93 assertEquals("Pacific Standard Time", tz.getDisplayName(Locale.US)); 94 assertEquals("heure normale du Pacifique nord-américain", tz.getDisplayName(Locale.FRANCE)); 100 assertEquals("PST", tz.getDisplayName(false, TimeZone.SHORT)); 101 assertEquals("Pacific Daylight Time", tz.getDisplayName(true, TimeZone.LONG)); 102 assertEquals("Pacific Standard Time", tz.getDisplayName(false, TimeZone.LONG)); 107 assertEquals("Pacific Daylight Time", tz.getDisplayName(true, TimeZone.LONG, Locale.US)); 108 assertEquals("Pacific Standard Time", tz.getDisplayName(false, TimeZone.LONG, Locale.UK)); 110 tz.getDisplayName(true, TimeZone.LONG, Locale.FRANCE)) [all...] |
/external/nist-sip/java/javax/sip/address/ |
Address.java | 7 String getDisplayName();
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
TimeZoneICU.java | 47 //public String getDisplayName() 48 //public String getDisplayName(boolean daylight, int style) 49 //public String getDisplayName(Locale locale) 52 public String getDisplayName(boolean daylight, int style, Locale locale) { 53 return fIcuTz.getDisplayName(daylight, style, locale);
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/ |
TimeZoneTest.java | 89 * Test method for 'com.ibm.icu.util.TimeZone.getDisplayName()' 93 assertEquals("Pacific Standard Time", tz.getDisplayName()); 97 * Test method for 'com.ibm.icu.util.TimeZone.getDisplayName(Locale)' 101 assertEquals("Pacific Standard Time", tz.getDisplayName(Locale.US)); 105 * Test method for 'com.ibm.icu.util.TimeZone.getDisplayName(ULocale)' 109 assertEquals("Pacific Standard Time", tz.getDisplayName(ULocale.US)); 113 * Test method for 'com.ibm.icu.util.TimeZone.getDisplayName(boolean, int)' 117 assertEquals("PDT", tz.getDisplayName(true, TimeZone.SHORT)); 118 assertEquals("Pacific Daylight Time", tz.getDisplayName(true, TimeZone.LONG)); 122 * Test method for 'com.ibm.icu.util.TimeZone.getDisplayName(boolean, int, Locale) [all...] |
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/icuadapter/ |
TimeZoneJDK.java | 74 //public String getDisplayName() 75 //public String getDisplayName(boolean daylight, int style) 76 //public String getDisplayName(Locale locale) 77 //public String getDisplayName(ULocale locale) 79 public String getDisplayName(boolean daylight, int style, Locale locale) { 80 return fJdkTz.getDisplayName(daylight, style, locale); 84 public String getDisplayName(boolean daylight, int style, ULocale locale) { 85 return fJdkTz.getDisplayName(daylight, style, locale.toLocale());
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
TimeZoneTest.java | 177 * java.util.TimeZone#getDisplayName(java.util.Locale) 182 .getDisplayName(Locale.CHINA)); 186 * java.util.TimeZone#getDisplayName(boolean, int, java.util.Locale) 192 timezone.getDisplayName(false, TimeZone.LONG, Locale.CHINA)); 194 timezone.getDisplayName(false, TimeZone.SHORT, Locale.CHINA)); 196 timezone.getDisplayName(false, 100, Locale.CHINA); 252 * @add test {@link java.util.TimeZone#getDisplayName()} 257 String defaultName = defaultZone.getDisplayName(); 258 String expectedName = defaultZone.getDisplayName(defaulLocal); 265 * @add test {@link java.util.TimeZone#getDisplayName(boolean, int) [all...] |
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
TimeZoneNameTest.java | 27 // JDK TimeZone.getDisplayName no longer passes Pacific/Johnston to a 102 tznames.getDisplayName(canonicalID, NameType.LONG_DAYLIGHT, date) : 103 tznames.getDisplayName(canonicalID, NameType.LONG_STANDARD, date); 107 tznames.getDisplayName(canonicalID, NameType.SHORT_DAYLIGHT, date) : 108 tznames.getDisplayName(canonicalID, NameType.SHORT_STANDARD, date); 118 String name = tz.getDisplayName(daylight, style, loc); 142 name = tz.getDisplayName(daylight, style, icuLoc);
|
CurrencyNameTest.java | 31 mGetDisplayName = Currency.class.getMethod("getDisplayName", new Class[] {Locale.class}); 105 logln("INFO: Currency#getDisplayName(String,Locale) is not available."); 122 errln("FAIL: JDK Currency#getDisplayName(\"" + currency + "\", \"" + loc + "\") throws exception: " + e.getMessage()); 126 String curNameIcu = currencyIcu.getDisplayName(loc); 152 errln("FAIL: JDK Currency#getDisplayName(\"" + currency + "\", \"" + locIcu + "\") throws exception: " + e.getMessage());
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
SubscriptionInfoTest.java | 48 assertEquals("T-mobile", mSubscriptionInfoUT.getDisplayName()); 69 assertEquals("T-mobile", mSubscriptionInfoUT.getDisplayName()); 71 assertEquals("Verizon", mSubscriptionInfoUT.getDisplayName());
|
/development/samples/BusinessCard/src/com/example/android/businesscard/ |
ContactInfo.java | 31 public String getDisplayName() {
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
CollatorServiceShim.java | 74 public String getDisplayName(String id, ULocale displayLocale) { 76 return delegate.getDisplayName(objectLocale, displayLocale); 114 String getDisplayName(ULocale objectLocale, ULocale displayLocale) { 116 return service.getDisplayName(id, displayLocale);
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
CollatorServiceShim.java | 73 public String getDisplayName(String id, ULocale displayLocale) { 75 return delegate.getDisplayName(objectLocale, displayLocale); 113 String getDisplayName(ULocale objectLocale, ULocale displayLocale) { 115 return service.getDisplayName(id, displayLocale);
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
SimpleHoliday.java | 33 * getDisplayName will return this string instead. 35 * @see Holiday#getDisplayName(java.util.Locale) 52 * getDisplayName will return this string instead. 54 * @see Holiday#getDisplayName(java.util.Locale) 72 * getDisplayName will return this string instead. 74 * @see Holiday#getDisplayName(java.util.Locale) 102 * getDisplayName will return this string instead. 104 * @see Holiday#getDisplayName(java.util.Locale)
|
Holiday.java | 120 * @param name The name of this holiday. The getDisplayName method 140 public String getDisplayName() { 141 return getDisplayName(ULocale.getDefault(Category.DISPLAY)); 155 public String getDisplayName(Locale locale) 157 return getDisplayName(ULocale.forLocale(locale)); 171 public String getDisplayName(ULocale locale)
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
SimpleHoliday.java | 32 * getDisplayName will return this string instead. 34 * @see Holiday#getDisplayName(java.util.Locale) 52 * getDisplayName will return this string instead. 54 * @see Holiday#getDisplayName(java.util.Locale) 73 * getDisplayName will return this string instead. 75 * @see Holiday#getDisplayName(java.util.Locale) 104 * getDisplayName will return this string instead. 106 * @see Holiday#getDisplayName(java.util.Locale)
|
Holiday.java | 126 * @param name The name of this holiday. The getDisplayName method 148 public String getDisplayName() { 149 return getDisplayName(ULocale.getDefault(Category.DISPLAY)); 164 public String getDisplayName(Locale locale) 166 return getDisplayName(ULocale.forLocale(locale)); 181 public String getDisplayName(ULocale locale)
|
/packages/apps/Messaging/src/com/android/messaging/ui/ |
BlockedParticipantListItemView.java | 59 data.getDisplayName(), TextDirectionHeuristicsCompat.LTR)); 62 mNameTextView.setText(data.getDisplayName());
|
/libcore/luni/src/main/native/ |
libcore_icu_TimeZoneNames.cpp | 51 // wrong. TimeZone.getDisplayName creates accurate names on demand. 92 names->getDisplayName(zone_id.unicodeString(), UTZNM_LONG_STANDARD, now, long_std); 94 names->getDisplayName(zone_id.unicodeString(), UTZNM_SHORT_STANDARD, now, short_std); 96 names->getDisplayName(zone_id.unicodeString(), UTZNM_LONG_DAYLIGHT, now, long_dst); 98 names->getDisplayName(zone_id.unicodeString(), UTZNM_SHORT_DAYLIGHT, now, short_dst); 139 names->getDisplayName(tz.unicodeString(), UTZNM_EXEMPLAR_LOCATION, now, s);
|
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/ |
ContactRequest.java | 103 public String getDisplayName() { 163 public String getDisplayName() { 164 return contactRequest.getDisplayName();
|