HomeSort by relevance Sort by last modified time
    Searched refs:DateIntervalFormat (Results 1 - 18 of 18) sorted by null

  /libcore/luni/src/main/native/
libcore_icu_DateIntervalFormat.cpp 17 #define LOG_TAG "DateIntervalFormat"
35 DateIntervalFormat* formatter(DateIntervalFormat::createInstance(skeletonHolder.unicodeString(), locale, status));
36 if (maybeThrowIcuException(env, "DateIntervalFormat::createInstance", status)) {
50 delete reinterpret_cast<DateIntervalFormat*>(address);
54 DateIntervalFormat* formatter(reinterpret_cast<DateIntervalFormat*>(address));
61 if (maybeThrowIcuException(env, "DateIntervalFormat::format", status)) {
69 NATIVE_METHOD(DateIntervalFormat, createDateIntervalFormat, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)J"),
70 NATIVE_METHOD(DateIntervalFormat, destroyDateIntervalFormat, "(J)V")
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
dtitvfmt.h 35 * DateIntervalFormat is a class for formatting and parsing date
47 * DateIntervalFormat formats a DateInterval into
170 * DateIntervalFormat needs the following information for correct
195 * DateIntervalFormat uses the same syntax as that of
202 * // the date interval object which the DateIntervalFormat formats on
206 * DateIntervalFormat* dtIntervalFmt = DateIntervalFormat::createInstance(
218 class U_I18N_API DateIntervalFormat : public Format {
222 * Construct a DateIntervalFormat from skeleton and the default locale.
234 static DateIntervalFormat* U_EXPORT2 createInstance
    [all...]
dtitvinf.h 41 * date time interval patterns. It is used by DateIntervalFormat.
44 * For most users, ordinary use of DateIntervalFormat does not need to create
46 * DateIntervalFormat will take care of it when creating a date interval
130 * The recommended way to create a DateIntervalFormat object is to pass in
132 * By using a Locale parameter, the DateIntervalFormat object is
136 * Users can also create DateIntervalFormat object
339 * DateIntervalFormat will need access to
344 * make DateIntervalFormat a friend of DateIntervalInfo.
346 friend class DateIntervalFormat;
  /external/icu4c/i18n/unicode/
dtitvfmt.h 35 * DateIntervalFormat is a class for formatting and parsing date
47 * DateIntervalFormat formats a DateInterval into
170 * DateIntervalFormat needs the following information for correct
195 * DateIntervalFormat uses the same syntax as that of
202 * // the date interval object which the DateIntervalFormat formats on
206 * DateIntervalFormat* dtIntervalFmt = DateIntervalFormat::createInstance(
218 class U_I18N_API DateIntervalFormat : public Format {
222 * Construct a DateIntervalFormat from skeleton and the default locale.
234 static DateIntervalFormat* U_EXPORT2 createInstance
    [all...]
dtitvinf.h 33 * date time interval patterns. It is used by DateIntervalFormat.
36 * For most users, ordinary use of DateIntervalFormat does not need to create
38 * DateIntervalFormat will take care of it when creating a date interval
122 * The recommended way to create a DateIntervalFormat object is to pass in
124 * By using a Locale parameter, the DateIntervalFormat object is
128 * Users can also create DateIntervalFormat object
333 * DateIntervalFormat will need access to
338 * make DateIntervalFormat a friend of DateIntervalInfo.
340 friend class DateIntervalFormat;
  /external/icu4c/i18n/
dtitvfmt.cpp 64 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(DateIntervalFormat)
68 DateIntervalFormat* U_EXPORT2
69 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
75 DateIntervalFormat* U_EXPORT2
76 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
97 DateIntervalFormat* U_EXPORT2
98 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
105 DateIntervalFormat* U_EXPORT2
106 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
115 DateIntervalFormat::DateIntervalFormat(
    [all...]
udateintervalformat.cpp 41 LocalPointer<DateIntervalFormat> formatter(
42 DateIntervalFormat::createInstance(skel, Locale(locale), *status));
61 delete (DateIntervalFormat*)formatter;
93 ((const DateIntervalFormat*)formatter)->format( &interval, res, fp, *status );
  /external/chromium_org/third_party/icu/source/i18n/
dtitvfmt.cpp 64 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(DateIntervalFormat)
68 DateIntervalFormat* U_EXPORT2
69 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
75 DateIntervalFormat* U_EXPORT2
76 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
97 DateIntervalFormat* U_EXPORT2
98 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
105 DateIntervalFormat* U_EXPORT2
106 DateIntervalFormat::createInstance(const UnicodeString& skeleton,
115 DateIntervalFormat::DateIntervalFormat(
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/libcore/icu/
DateIntervalFormat_Delegate.java 24 import com.ibm.icu.text.DateIntervalFormat;
36 private DateIntervalFormat mFormat;
45 "Unable for find native DateIntervalFormat", null);
61 DateIntervalFormat.getInstance(skeleton, new ULocale(localeName));
  /external/chromium_org/third_party/icu/source/test/intltest/
dtifmtts.cpp 42 if (exec) logln("TestSuite DateIntervalFormat");
53 * Test various generic API methods of DateIntervalFormat for API coverage.
60 logln("Testing DateIntervalFormat create instance with default locale and skeleton");
62 DateIntervalFormat* dtitvfmt = DateIntervalFormat::createInstance(UDAT_YEAR_MONTH_DAY, status);
64 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + default locale) - exitting");
74 logln("Testing DateIntervalFormat create instance with given locale and skeleton");
76 dtitvfmt = DateIntervalFormat::createInstance(UDAT_YEAR_MONTH_DAY, Locale::getJapanese(), status);
78 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + locale) - exitting");
88 logln("Testing DateIntervalFormat create instance with dateIntervalInfo and skeleton")
    [all...]
  /external/icu4c/test/intltest/
dtifmtts.cpp 44 if (exec) logln("TestSuite DateIntervalFormat");
56 * Test various generic API methods of DateIntervalFormat for API coverage.
63 logln("Testing DateIntervalFormat create instance with default locale and skeleton");
65 DateIntervalFormat* dtitvfmt = DateIntervalFormat::createInstance(UDAT_YEAR_MONTH_DAY, status);
67 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + default locale) - exitting");
77 logln("Testing DateIntervalFormat create instance with given locale and skeleton");
79 dtitvfmt = DateIntervalFormat::createInstance(UDAT_YEAR_MONTH_DAY, Locale::getJapanese(), status);
81 dataerrln("ERROR: Could not create DateIntervalFormat (skeleton + locale) - exitting");
91 logln("Testing DateIntervalFormat create instance with dateIntervalInfo and skeleton")
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
DateIntervalFormatBenchmark.java 24 import static libcore.icu.DateIntervalFormat.*;
  /libcore/luni/src/main/java/libcore/icu/
DateIntervalFormat.java 25 * Exposes icu4c's DateIntervalFormat.
27 public final class DateIntervalFormat {
62 private DateIntervalFormat() {
92 // This is not the behavior of icu4c's DateIntervalFormat, but it's the historical behavior
  /frameworks/base/core/java/android/text/format/
DateUtils.java 33 import libcore.icu.DateIntervalFormat;
    [all...]
  /libcore/luni/src/test/java/libcore/icu/
DateIntervalFormatTest.java 26 import static libcore.icu.DateIntervalFormat.*;
35 // These are the old CTS tests for DateIntervalFormat.formatDateRange.
  /external/chromium_org/third_party/icu/source/common/unicode/
urename.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 609 milliseconds