Home
last modified time | relevance | path

Searched refs:dstyle (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
DDateFormatTest.java40 private void checkGetInstance(int dstyle, int tstyle, Locale loc) { in checkGetInstance() argument
42 DateFormat df = getJDKInstance(dstyle, tstyle, loc, method); in checkGetInstance()
55 DateFormat dfIcu = getJDKInstance(dstyle, tstyle, iculoc, null); in checkGetInstance()
69 private DateFormat getJDKInstance(int dstyle, int tstyle, Locale loc, String[] methodName) { in getJDKInstance() argument
72 if (dstyle < 0) { in getJDKInstance()
76 df = DateFormat.getDateInstance(dstyle, loc); in getJDKInstance()
79 df = DateFormat.getDateTimeInstance(dstyle, tstyle, loc); in getJDKInstance()
88 …private com.ibm.icu.text.DateFormat getICUInstance(int dstyle, int tstyle, Locale loc, String[] me… in getICUInstance() argument
91 if (dstyle < 0) { in getICUInstance()
95 icudf = com.ibm.icu.text.DateFormat.getDateInstance(dstyle, loc); in getICUInstance()
[all …]
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/text/
DDateFormatProviderICU.java43 private DateFormat getInstance(int dstyle, int tstyle, Locale locale) { in getInstance() argument
46 if (dstyle == NONE) { in getInstance()
49 icuDfmt = com.ibm.icu.text.DateFormat.getDateInstance(dstyle, actual); in getInstance()
51 icuDfmt = com.ibm.icu.text.DateFormat.getDateTimeInstance(dstyle, tstyle, actual); in getInstance()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DDateFormatRoundTripTest.java133 for (int dstyle = DateFormat.FULL; dstyle <= DateFormat.SHORT; ++dstyle) { in _test()
136 logln("Testing dstyle " + styleName(dstyle) + ", tstyle " + styleName(tstyle)); in _test()
137 DateFormat df = DateFormat.getDateTimeInstance(dstyle, tstyle, loc); in _test()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DDateFormatRoundTripTest.java132 for (int dstyle = DateFormat.FULL; dstyle <= DateFormat.SHORT; ++dstyle) { in _test()
135 logln("Testing dstyle " + styleName(dstyle) + ", tstyle " + styleName(tstyle)); in _test()
136 DateFormat df = DateFormat.getDateTimeInstance(dstyle, tstyle, loc); in _test()
/external/icu/icu4c/source/test/intltest/
Ddtfmtrtts.cpp263 for(int32_t dstyle = DateFormat::FULL; dstyle <= DateFormat::SHORT; ++dstyle) { in test() local
266 …logln("Testing dstyle" + UnicodeString(styleName((DateFormat::EStyle)dstyle)) + ", tstyle" + Unico… in test()
267 …DateFormat *df = DateFormat::createDateTimeInstance((DateFormat::EStyle)dstyle, (DateFormat::EStyl… in test()
269 …:createDateTimeInstance ") + UnicodeString(styleName((DateFormat::EStyle)dstyle)) + ", tstyle" + U… in test()