Searched refs:tstyle (Results 1 – 5 of 5) sorted by relevance
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
D | DateFormatTest.java | 40 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 73 df = DateFormat.getTimeInstance(tstyle, loc); in getJDKInstance() 75 } else if (tstyle < 0) { 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 92 icudf = com.ibm.icu.text.DateFormat.getTimeInstance(tstyle, loc); in getICUInstance() 94 } else if (tstyle < 0) { in getICUInstance() [all …]
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/text/ |
D | DateFormatProviderICU.java | 41 private DateFormat getInstance(int dstyle, int tstyle, Locale locale) { in getInstance() argument 45 icuDfmt = com.ibm.icu.text.DateFormat.getTimeInstance(tstyle, actual); in getInstance() 46 } else if (tstyle == NONE) { in getInstance() 49 icuDfmt = com.ibm.icu.text.DateFormat.getDateTimeInstance(dstyle, tstyle, actual); in getInstance()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | DateFormatRoundTripTest.java | 131 for (int tstyle = DateFormat.FULL; tstyle <= DateFormat.SHORT; ++tstyle) { in _test() 133 logln("Testing dstyle " + styleName(dstyle) + ", tstyle " + styleName(tstyle)); in _test() 134 DateFormat df = DateFormat.getDateTimeInstance(dstyle, tstyle, loc); in _test()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | DateFormatRoundTripTest.java | 135 for (int tstyle = DateFormat.FULL; tstyle <= DateFormat.SHORT; ++tstyle) { in _test() 137 logln("Testing dstyle " + styleName(dstyle) + ", tstyle " + styleName(tstyle)); in _test() 138 DateFormat df = DateFormat.getDateTimeInstance(dstyle, tstyle, loc); in _test()
|
/external/icu/icu4c/source/test/intltest/ |
D | dtfmtrtts.cpp | 262 for(int32_t tstyle = DateFormat::FULL; tstyle <= DateFormat::SHORT; ++tstyle) { in test() local 264 …(DateFormat::EStyle)dstyle)) + ", tstyle" + UnicodeString(styleName((DateFormat::EStyle)tstyle)) ); in test() 265 … = DateFormat::createDateTimeInstance((DateFormat::EStyle)dstyle, (DateFormat::EStyle)tstyle, loc); in test() 267 …tyle)dstyle)) + ", tstyle" + UnicodeString(styleName((DateFormat::EStyle)tstyle)) + "Locale: " … in test()
|