HomeSort by relevance Sort by last modified time
    Searched refs:TimeZoneFormat (Results 1 - 25 of 26) sorted by null

1 2

  /external/icu/icu4c/source/i18n/
tzfmt.cpp 172 // item and used by TimeZoneFormat
306 // TimeZoneFormat
308 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(TimeZoneFormat)
310 TimeZoneFormat::TimeZoneFormat(const Locale& locale, UErrorCode& status)
409 TimeZoneFormat::TimeZoneFormat(const TimeZoneFormat& other)
420 TimeZoneFormat::~TimeZoneFormat() {
    [all...]
timezone.cpp     [all...]
smpdtfmt.cpp 625 // TimeZoneFormat in ICU4C only depends on a locale for now
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
tzfmt.h 12 * \brief C++ API: TimeZoneFormat
26 * in TimeZoneFormat.
198 * Constants for time types used by TimeZoneFormat APIs for
241 * used by the {@link TimeZoneFormat}.
256 * <code>TimeZoneFormat</code> supports time zone display name formatting and parsing.
257 * An instance of TimeZoneFormat works as a subformatter of {@link SimpleDateFormat},
258 * but you can also directly get a new instance of <code>TimeZoneFormat</code> and
270 class U_I18N_API TimeZoneFormat : public Format {
276 TimeZoneFormat(const TimeZoneFormat& other)
    [all...]
smpdtfmt.h 47 class TimeZoneFormat;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
TimeZoneFormatTest.java 30 import android.icu.text.TimeZoneFormat;
31 import android.icu.text.TimeZoneFormat.GMTOffsetPatternType;
32 import android.icu.text.TimeZoneFormat.ParseOption;
33 import android.icu.text.TimeZoneFormat.Style;
34 import android.icu.text.TimeZoneFormat.TimeType;
143 String localGMTString = TimeZoneFormat.getInstance(LOCALES[locidx]).formatOffsetLocalizedGMT(0);
    [all...]
DateFormatTest.java 48 import android.icu.text.TimeZoneFormat;
49 import android.icu.text.TimeZoneFormat.ParseOption;
665 TimeZoneFormat tzfmt = univ.getTimeZoneFormat().cloneAsThawed();
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
TimeZoneFormatTest.java 29 import com.ibm.icu.text.TimeZoneFormat;
30 import com.ibm.icu.text.TimeZoneFormat.GMTOffsetPatternType;
31 import com.ibm.icu.text.TimeZoneFormat.ParseOption;
32 import com.ibm.icu.text.TimeZoneFormat.Style;
33 import com.ibm.icu.text.TimeZoneFormat.TimeType;
139 String localGMTString = TimeZoneFormat.getInstance(LOCALES[locidx]).formatOffsetLocalizedGMT(0);
637 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(loc);
    [all...]
DateFormatTest.java 47 import com.ibm.icu.text.TimeZoneFormat;
48 import com.ibm.icu.text.TimeZoneFormat.ParseOption;
661 TimeZoneFormat tzfmt = univ.getTimeZoneFormat().cloneAsThawed();
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
TimeZone.java 24 import android.icu.text.TimeZoneFormat;
25 import android.icu.text.TimeZoneFormat.Style;
26 import android.icu.text.TimeZoneFormat.TimeType;
483 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale);
511 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale);
541 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
TimeZone.java 23 import com.ibm.icu.text.TimeZoneFormat;
24 import com.ibm.icu.text.TimeZoneFormat.Style;
25 import com.ibm.icu.text.TimeZoneFormat.TimeType;
542 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale);
570 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale);
600 TimeZoneFormat tzfmt = TimeZoneFormat.getInstance(locale);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TimeZoneFormat.java 52 * <code>TimeZoneFormat</code> supports time zone display name formatting and parsing.
53 * An instance of TimeZoneFormat works as a subformatter of {@link SimpleDateFormat},
54 * but you can also directly get a new instance of <code>TimeZoneFormat</code> and
65 public class TimeZoneFormat extends UFormat implements Freezable<TimeZoneFormat>, Serializable {
73 * Time zone display format style enum used by format/parse APIs in <code>TimeZoneFormat</code>.
75 * @see TimeZoneFormat#format(Style, TimeZone, long)
76 * @see TimeZoneFormat#format(Style, TimeZone, long, Output)
77 * @see TimeZoneFormat#parse(Style, String, ParsePosition, Output)
198 * @see TimeZoneFormat#getGMTOffsetPattern(GMTOffsetPatternType
    [all...]
SimpleDateFormat.java 33 import android.icu.text.TimeZoneFormat.Style;
34 import android.icu.text.TimeZoneFormat.TimeType;
712 * @see TimeZoneFormat
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
TimeZoneFormat.java 51 * <code>TimeZoneFormat</code> supports time zone display name formatting and parsing.
52 * An instance of TimeZoneFormat works as a subformatter of {@link SimpleDateFormat},
53 * but you can also directly get a new instance of <code>TimeZoneFormat</code> and
65 public class TimeZoneFormat extends UFormat implements Freezable<TimeZoneFormat>, Serializable {
73 * Time zone display format style enum used by format/parse APIs in <code>TimeZoneFormat</code>.
75 * @see TimeZoneFormat#format(Style, TimeZone, long)
76 * @see TimeZoneFormat#format(Style, TimeZone, long, Output)
77 * @see TimeZoneFormat#parse(Style, String, ParsePosition, Output)
219 * @see TimeZoneFormat#getGMTOffsetPattern(GMTOffsetPatternType
    [all...]
SimpleDateFormat.java 32 import com.ibm.icu.text.TimeZoneFormat.Style;
33 import com.ibm.icu.text.TimeZoneFormat.TimeType;
711 * @see TimeZoneFormat
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
FormatTests.java 40 import android.icu.text.TimeZoneFormat;
41 import android.icu.text.TimeZoneFormat.Style;
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
FormatTests.java 39 import com.ibm.icu.text.TimeZoneFormat;
40 import com.ibm.icu.text.TimeZoneFormat.Style;
    [all...]
  /external/icu/icu4c/source/test/intltest/
tzfmttst.cpp     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneGenericNames.java 25 import android.icu.text.TimeZoneFormat.TimeType;
41 * use android.icu.text.TimeZoneFormat.
47 // TimeZoneGenericNames in ICU 49. ICU 4.8 android.icu.text.TimeZoneFormat used to
48 // serialize TimeZoneGenericNames field. TimeZoneFormat no longer read TimeZoneGenericNames
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneGenericNames.java 24 import com.ibm.icu.text.TimeZoneFormat.TimeType;
40 * use com.ibm.icu.text.TimeZoneFormat.
45 // TimeZoneGenericNames in ICU 49. ICU 4.8 com.ibm.icu.text.TimeZoneFormat used to
46 // serialize TimeZoneGenericNames field. TimeZoneFormat no longer read TimeZoneGenericNames
    [all...]
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 970 milliseconds

1 2