Searched refs:timeType (Results 1 - 25 of 25) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DTimeArrayTimeZoneRule.java23 private final int timeType; field in class:TimeArrayTimeZoneRule
37 * @param timeType The time type of the start times, which is one of
41 public TimeArrayTimeZoneRule(String name, int rawOffset, int dstSavings, long[] startTimes, int timeType) { argument
49 this.timeType = timeType;
70 return timeType;
125 if (timeType == ((TimeArrayTimeZoneRule)other).timeType
142 if (timeType != DateTimeRule.UTC_TIME) {
145 if (timeType
[all...]
H A DDateTimeRule.java82 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code>
86 int millisInDay, int timeType) {
92 this.timeRuleType = timeType;
110 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code>
114 int millisInDay, int timeType) {
121 this.timeRuleType = timeType;
138 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code>
142 int millisInDay, int timeType) {
149 this.timeRuleType = timeType;
85 DateTimeRule(int month, int dayOfMonth, int millisInDay, int timeType) argument
113 DateTimeRule(int month, int weekInMonth, int dayOfWeek, int millisInDay, int timeType) argument
141 DateTimeRule(int month, int dayOfMonth, int dayOfWeek, boolean after, int millisInDay, int timeType) argument
H A DTimeZone.java485 Output<TimeType> timeType = new Output<TimeType>(TimeType.UNKNOWN);
489 result = tzfmt.format(Style.GENERIC_LOCATION, this, date, timeType);
492 result = tzfmt.format(Style.GENERIC_LONG, this, date, timeType);
495 result = tzfmt.format(Style.GENERIC_SHORT, this, date, timeType);
502 if (daylight && timeType.value == TimeType.STANDARD ||
503 !daylight && timeType.value == TimeType.DAYLIGHT) {
H A DBasicTimeZone.java298 int timeType = tar.getTimeType();
302 if (timeType == DateTimeRule.STANDARD_TIME) {
305 if (timeType == DateTimeRule.WALL_TIME) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DTimeArrayTimeZoneRule.java22 private final int timeType; field in class:TimeArrayTimeZoneRule
36 * @param timeType The time type of the start times, which is one of
42 public TimeArrayTimeZoneRule(String name, int rawOffset, int dstSavings, long[] startTimes, int timeType) { argument
50 this.timeType = timeType;
73 return timeType;
133 if (timeType == ((TimeArrayTimeZoneRule)other).timeType
151 if (timeType != DateTimeRule.UTC_TIME) {
154 if (timeType
[all...]
H A DDateTimeRule.java95 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code>
101 int millisInDay, int timeType) {
107 this.timeRuleType = timeType;
125 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code>
131 int millisInDay, int timeType) {
138 this.timeRuleType = timeType;
155 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code>
161 int millisInDay, int timeType) {
168 this.timeRuleType = timeType;
100 DateTimeRule(int month, int dayOfMonth, int millisInDay, int timeType) argument
130 DateTimeRule(int month, int weekInMonth, int dayOfWeek, int millisInDay, int timeType) argument
160 DateTimeRule(int month, int dayOfMonth, int dayOfWeek, boolean after, int millisInDay, int timeType) argument
H A DTimeZone.java544 Output<TimeType> timeType = new Output<TimeType>(TimeType.UNKNOWN);
548 result = tzfmt.format(Style.GENERIC_LOCATION, this, date, timeType);
551 result = tzfmt.format(Style.GENERIC_LONG, this, date, timeType);
554 result = tzfmt.format(Style.GENERIC_SHORT, this, date, timeType);
561 if (daylight && timeType.value == TimeType.STANDARD ||
562 !daylight && timeType.value == TimeType.DAYLIGHT) {
H A DBasicTimeZone.java309 int timeType = tar.getTimeType();
313 if (timeType == DateTimeRule.STANDARD_TIME) {
316 if (timeType == DateTimeRule.WALL_TIME) {
/external/icu/icu4c/source/i18n/
H A Ddtrule.cpp23 TimeRuleType timeType)
25 fDateRuleType(DateTimeRule::DOM), fTimeRuleType(timeType) {
32 TimeRuleType timeType)
34 fDateRuleType(DateTimeRule::DOW), fTimeRuleType(timeType) {
42 TimeRuleType timeType)
45 fTimeRuleType(timeType) {
20 DateTimeRule(int32_t month, int32_t dayOfMonth, int32_t millisInDay, TimeRuleType timeType) argument
28 DateTimeRule(int32_t month, int32_t weekInMonth, int32_t dayOfWeek, int32_t millisInDay, TimeRuleType timeType) argument
37 DateTimeRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, UBool after, int32_t millisInDay, TimeRuleType timeType) argument
H A Dtzgnames.h56 UnicodeString& tzID, UTimeZoneFormatTimeType& timeType, UErrorCode& status) const;
H A Dtzfmt.cpp644 UnicodeString& name, UTimeZoneFormatTimeType* timeType /* = NULL */) const {
645 if (timeType) {
646 *timeType = UTZFMT_TIME_TYPE_UNKNOWN;
662 formatSpecific(tz, UTZNM_LONG_STANDARD, UTZNM_LONG_DAYLIGHT, date, name, timeType);
665 formatSpecific(tz, UTZNM_SHORT_STANDARD, UTZNM_SHORT_DAYLIGHT, date, name, timeType);
758 if (timeType) {
759 *timeType = (dstOffset != 0) ? UTZFMT_TIME_TYPE_DAYLIGHT : UTZFMT_TIME_TYPE_STANDARD;
804 UTimeZoneFormatTimeType* timeType /*= NULL*/) const {
805 return parse(style, text, pos, getDefaultParseOptions(), timeType);
810 int32_t parseOptions, UTimeZoneFormatTimeType* timeType /*
[all...]
H A Dbasictz.cpp426 DateTimeRule::TimeRuleType timeType; local
430 timeType = tar->getTimeType();
433 if (timeType == DateTimeRule::STANDARD_TIME) {
436 if (timeType == DateTimeRule::WALL_TIME) {
460 tar->getRawOffset(), tar->getDSTSavings(), newTimes, asize, timeType);
H A Dtzgnames.cpp115 UTimeZoneFormatTimeType timeType; member in struct:GMatchInfo
240 gmatch->timeType = UTZFMT_TIME_TYPE_UNKNOWN;
282 UnicodeString& tzID, UTimeZoneFormatTimeType& timeType, UErrorCode& status) const;
914 UnicodeString& tzID, UTimeZoneFormatTimeType& timeType, UErrorCode& status) const {
915 timeType = UTZFMT_TIME_TYPE_UNKNOWN;
975 //timeType = bestMatchTimeType;
985 timeType = bestMatchTimeType;
997 timeType = bestMatchTimeType;
1015 // timeType = UTZFMT_TIME_TYPE_STANDARD will cause a
1027 timeType
913 findBestMatch(const UnicodeString& text, int32_t start, uint32_t types, UnicodeString& tzID, UTimeZoneFormatTimeType& timeType, UErrorCode& status) const argument
1347 findBestMatch(const UnicodeString& text, int32_t start, uint32_t types, UnicodeString& tzID, UTimeZoneFormatTimeType& timeType, UErrorCode& status) const argument
[all...]
H A Dtimezone.cpp1199 UTimeZoneFormatTimeType timeType; local
1211 tzfmt->format(UTZFMT_STYLE_GENERIC_LOCATION, *this, date, result, &timeType);
1214 tzfmt->format(UTZFMT_STYLE_GENERIC_LONG, *this, date, result, &timeType);
1217 tzfmt->format(UTZFMT_STYLE_GENERIC_SHORT, *this, date, result, &timeType);
1225 if ((daylight && timeType == UTZFMT_TIME_TYPE_STANDARD) || (!daylight && timeType == UTZFMT_TIME_TYPE_DAYLIGHT)) {
/external/icu/icu4c/source/i18n/unicode/
H A Ddtrule.h65 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code>
70 int32_t millisInDay, TimeRuleType timeType);
83 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code>
88 int32_t millisInDay, TimeRuleType timeType);
101 * @param timeType The time type, <code>WALL_TIME</code> or <code>STANDARD_TIME</code>
106 int32_t millisInDay, TimeRuleType timeType);
H A Dtzfmt.h528 * @param timeType the output argument for receiving the time type (standard/daylight/unknown)
536 UnicodeString& name, UTimeZoneFormatTimeType* timeType = NULL) const;
590 * @param timeType The output argument for receiving the time type (standard/daylight/unknown),
599 int32_t parseOptions, UTimeZoneFormatTimeType* timeType = NULL) const;
608 * @param timeType The output argument for receiving the time type (standard/daylight/unknown),
617 UTimeZoneFormatTimeType* timeType = NULL) const;
719 * @param timeType when null, actual time type is set
723 UDate date, UnicodeString& name, UTimeZoneFormatTimeType *timeType) const;
/external/icu/icu4c/source/test/intltest/
H A Dtzfmttst.cpp723 UTimeZoneFormatTimeType timeType; member in struct:__anon7105
730 // parseOptions expected outPos timeType
838 } else if (ttype != DATA[i].timeType) {
839 errMsg = (UnicodeString)"Time type: " + ttype + " - expected: " + DATA[i].timeType;
1025 UTimeZoneFormatTimeType timeType; member in struct:__anon7106
1113 UTimeZoneFormatTimeType timeType; local
1115 tzfmt->format(DATA[i].style, *(tz.getAlias()), DATA[i].date, out, &timeType);
1120 if (DATA[i].timeType != timeType) {
1122 + timeType
1210 UTimeZoneFormatTimeType timeType; local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DTimeZoneFormatTest.java642 Output<TimeType> timeType = new Output<TimeType>(TimeType.UNKNOWN);
644 TimeZone tz = tzfmt.parse(style, text, pos, options, timeType);
655 } else if (timeType.value != expType) {
656 errMsg = "Time type: " + timeType + " - expected: " + expType;
930 Output<TimeType> timeType = new Output<TimeType>();
934 String out = tzfmt.format((Style)testCase[3], tz, ((Date)testCase[2]).getTime(), timeType);
936 if (!out.equals((String)testCase[4]) || timeType.value != testCase[5]) {
939 + "]; actual [output=" + out + ",type=" + timeType.value + "]");
945 out = tzfmt.format((Style)testCase[3], tz, ((Date)testCase[2]).getTime(), timeType);
947 if (!out.equals((String)testCase[4]) || timeType
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DTimeZoneFormatTest.java638 Output<TimeType> timeType = new Output<TimeType>(TimeType.UNKNOWN);
640 TimeZone tz = tzfmt.parse(style, text, pos, options, timeType);
651 } else if (timeType.value != expType) {
652 errMsg = "Time type: " + timeType + " - expected: " + expType;
926 Output<TimeType> timeType = new Output<TimeType>();
930 String out = tzfmt.format((Style)testCase[3], tz, ((Date)testCase[2]).getTime(), timeType);
932 if (!out.equals((String)testCase[4]) || timeType.value != testCase[5]) {
935 + "]; actual [output=" + out + ",type=" + timeType.value + "]");
941 out = tzfmt.format((Style)testCase[3], tz, ((Date)testCase[2]).getTime(), timeType);
943 if (!out.equals((String)testCase[4]) || timeType
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DTimeZoneGenericNames.java602 TimeType timeType = TimeType.UNKNOWN; field in class:TimeZoneGenericNames.GenericMatchInfo
612 public TimeType timeType() { method in class:TimeZoneGenericNames.GenericMatchInfo
613 return timeType;
647 //matchInfo.timeType = TimeType.UNKNOWN;
717 // if (bestMatch.nameType != GenericNameType.LONG || bestMatch.timeType != TimeType.STANDARD) {
727 if (bestMatch.timeType != TimeType.STANDARD) {
786 TimeType timeType = TimeType.UNKNOWN;
790 timeType = TimeType.STANDARD;
797 timeType = TimeType.STANDARD;
818 gmatch.timeType
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTimeZoneGenericNames.java600 TimeType timeType = TimeType.UNKNOWN; field in class:TimeZoneGenericNames.GenericMatchInfo
610 public TimeType timeType() { method in class:TimeZoneGenericNames.GenericMatchInfo
611 return timeType;
645 //matchInfo.timeType = TimeType.UNKNOWN;
715 // if (bestMatch.nameType != GenericNameType.LONG || bestMatch.timeType != TimeType.STANDARD) {
725 if (bestMatch.timeType != TimeType.STANDARD) {
784 TimeType timeType = TimeType.UNKNOWN;
788 timeType = TimeType.STANDARD;
795 timeType = TimeType.STANDARD;
816 gmatch.timeType
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DTimeZoneFormat.java806 * the style. This method takes an extra argument <code>Output&lt;TimeType&gt; timeType</code>
814 * @param timeType the output argument for receiving the time type (standard/daylight/unknown)
820 public String format(Style style, TimeZone tz, long date, Output<TimeType> timeType) { argument
823 if (timeType != null) {
824 timeType.value = TimeType.UNKNOWN;
840 result = formatSpecific(tz, NameType.LONG_STANDARD, NameType.LONG_DAYLIGHT, date, timeType);
843 result = formatSpecific(tz, NameType.SHORT_STANDARD, NameType.SHORT_DAYLIGHT, date, timeType);
933 if (timeType != null) {
934 timeType.value = (offsets[1] != 0) ? TimeType.DAYLIGHT : TimeType.STANDARD;
1001 * @param timeType Th
1007 parse(Style style, String text, ParsePosition pos, EnumSet<ParseOption> options, Output<TimeType> timeType) argument
1464 parse(Style style, String text, ParsePosition pos, Output<TimeType> timeType) argument
1707 formatSpecific(TimeZone tz, NameType stdType, NameType dstType, long date, Output<TimeType> timeType) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DTimeZoneFormat.java862 * the style. This method takes an extra argument <code>Output&lt;TimeType&gt; timeType</code>
870 * @param timeType the output argument for receiving the time type (standard/daylight/unknown)
877 public String format(Style style, TimeZone tz, long date, Output<TimeType> timeType) { argument
880 if (timeType != null) {
881 timeType.value = TimeType.UNKNOWN;
897 result = formatSpecific(tz, NameType.LONG_STANDARD, NameType.LONG_DAYLIGHT, date, timeType);
900 result = formatSpecific(tz, NameType.SHORT_STANDARD, NameType.SHORT_DAYLIGHT, date, timeType);
990 if (timeType != null) {
991 timeType.value = (offsets[1] != 0) ? TimeType.DAYLIGHT : TimeType.STANDARD;
1061 * @param timeType Th
1068 parse(Style style, String text, ParsePosition pos, EnumSet<ParseOption> options, Output<TimeType> timeType) argument
1526 parse(Style style, String text, ParsePosition pos, Output<TimeType> timeType) argument
1777 formatSpecific(TimeZone tz, NameType stdType, NameType dstType, long date, Output<TimeType> timeType) argument
[all...]
/external/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp802 STDMETHODIMP CHandler::GetFileTimeType(UInt32 *timeType) argument
804 *timeType = NFileTimeType::kUnix;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 426 milliseconds