/external/icu/icu4c/source/test/intltest/ |
D | tsdtfmsy.cpp | 46 month=symbol->getMonths(cnt); in TestGetMonths() 71 const UnicodeString * month = symbol->getMonths(cnt,context[i],width[j]); in TestGetMonths2() 226 const UnicodeString *months = en.getMonths(count); in TestSymbols() 228 if( *en.getMonths(count) != *fr.getMonths(count)) { in TestSymbols() 238 …const UnicodeString *wideMonths = en.getMonths(count,DateFormatSymbols::FORMAT,DateFormatSymbols::… in TestSymbols() 240 if( *en.getMonths(count,DateFormatSymbols::FORMAT,DateFormatSymbols::WIDE) != in TestSymbols() 241 *fr2.getMonths(count,DateFormatSymbols::FORMAT,DateFormatSymbols::WIDE )) { in TestSymbols() 245 …const UnicodeString *abbrMonths = en.getMonths(count,DateFormatSymbols::FORMAT,DateFormatSymbols::… in TestSymbols() 247 if( *en.getMonths(count,DateFormatSymbols::FORMAT,DateFormatSymbols::ABBREVIATED) != in TestSymbols() 248 *fr2.getMonths(count,DateFormatSymbols::FORMAT,DateFormatSymbols::ABBREVIATED )) { in TestSymbols() [all …]
|
D | transtst.cpp | 819 const UnicodeString* data = syms.getMonths(count); in TestJ277()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | IntlTestDateFormatSymbols.java | 39 month=symbol.getMonths(); in TestGetMonths() 60 String[] month =symbol.getMonths(context[i],width[j]); in TestGetMonths2() 152 final String[] months = en.getMonths(); in TestSymbols() 154 final String[] months1 = fr.getMonths(); in TestSymbols() 182 final String[] wideMonths = en.getMonths(DateFormatSymbols.FORMAT,DateFormatSymbols.WIDE); in TestSymbols() 184 final String[] wideMonths1 = fr2.getMonths(DateFormatSymbols.FORMAT,DateFormatSymbols.WIDE); in TestSymbols() 197 … final String[] abbrMonths = en.getMonths(DateFormatSymbols.FORMAT,DateFormatSymbols.ABBREVIATED); in TestSymbols() 199 …final String[] abbrMonths1 = fr2.getMonths(DateFormatSymbols.FORMAT,DateFormatSymbols.ABBREVIATED); in TestSymbols() 212 … final String[] narrowMonths = en.getMonths(DateFormatSymbols.FORMAT,DateFormatSymbols.NARROW); in TestSymbols() 214 … final String[] narrowMonths1 = fr.getMonths(DateFormatSymbols.FORMAT,DateFormatSymbols.NARROW); in TestSymbols() [all …]
|
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
D | DateFormatSymbolsTest.java | 77 compareArrays(jdkDfs.getMonths(), icuDfs.getMonths(), loc, "getMonths"); in TestICUEquivalent() 99 dfs.setMonths(dfsEnUS.getMonths()); in TestSetSymbols() 107 compareArrays(dfs.getMonths(), dfsEnUS.getMonths(), loc, "getMonths"); in TestSetSymbols()
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/ |
D | DateFormatSymbolsICU.java | 63 public String[] getMonths() { in getMonths() method in DateFormatSymbolsICU 64 return fIcuDfs.getMonths(); in getMonths()
|
D | SimpleDateFormatICU.java | 171 newJDK = newFormatSymbols.getMonths(); in setDateFormatSymbols() 172 curICU = icuDfs.getMonths(); in setDateFormatSymbols()
|
D | CalendarICU.java | 310 result = (style == LONG) ? dfs.getMonths() : dfs.getShortMonths(); in getFieldStrings()
|
/external/icu/icu4c/source/i18n/ |
D | udat.cpp | 617 res = syms->getMonths(count); in udat_getSymbols() 649 res = syms->getMonths(count, DateFormatSymbols::FORMAT, DateFormatSymbols::NARROW); in udat_getSymbols() 661 res = syms->getMonths(count, DateFormatSymbols::STANDALONE, DateFormatSymbols::WIDE); in udat_getSymbols() 665 res = syms->getMonths(count, DateFormatSymbols::STANDALONE, DateFormatSymbols::ABBREVIATED); in udat_getSymbols() 669 res = syms->getMonths(count, DateFormatSymbols::STANDALONE, DateFormatSymbols::NARROW); in udat_getSymbols() 759 syms->getMonths(count); in udat_countSymbols() 787 syms->getMonths(count, DateFormatSymbols::FORMAT, DateFormatSymbols::NARROW); in udat_countSymbols() 799 syms->getMonths(count, DateFormatSymbols::STANDALONE, DateFormatSymbols::WIDE); in udat_countSymbols() 803 syms->getMonths(count, DateFormatSymbols::STANDALONE, DateFormatSymbols::ABBREVIATED); in udat_countSymbols() 807 syms->getMonths(count, DateFormatSymbols::STANDALONE, DateFormatSymbols::NARROW); in udat_countSymbols()
|
D | dtfmtsym.cpp | 609 DateFormatSymbols::getMonths(int32_t &count) const in getMonths() function in DateFormatSymbols 623 DateFormatSymbols::getMonths(int32_t &count, DtContextType context, DtWidthType width ) const in getMonths() function in DateFormatSymbols
|
/external/icu/icu4c/source/i18n/unicode/ |
D | dtfmtsym.h | 240 const UnicodeString* getMonths(int32_t& count) const; 304 const UnicodeString* getMonths(int32_t& count, DtContextType context, DtWidthType width) const;
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
D | FormatTests.java | 1831 tmp.setMonths(dfsa.getMonths()); in hasSameBehavior() 1905 String months_a[] = dfs_a.getMonths(); in hasSameBehavior() 1906 String months_b[] = dfs_b.getMonths(); in hasSameBehavior()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateFormatSymbols.java | 717 public String[] getMonths() { in getMonths() method in DateFormatSymbols 729 public String[] getMonths(int context, int width) { in getMonths() method in DateFormatSymbols
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | com.ibm.icu_4.2.1.v20100412.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/robolectric/lib/main/ |
D | android.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/android/
com/ ... |