HomeSort by relevance Sort by last modified time
    Searched full:isdst (Results 1 - 25 of 49) sorted by null

1 2

  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 33 t.normalize(false /* use isDst */);
38 // + "( " + t.isDst + ',' + t.gmtoff
186 // call normalize() to make sure that isDst is set
187 local.normalize(false /* use isDst */);
189 local.normalize(true /* ignore isDst */);
203 // call normalize() to make sure that isDst is set
204 local.normalize(false /* use isDst */);
206 long millis = local.toMillis(true /* ignore isDst */);
225 local.isDst = test.dst1;
226 // call normalize() to make sure that isDst is se
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.h 136 , isDST(0)
150 , isDST(inTm.tm_isdst)
156 utcOffset = static_cast<int>(getUTCOffset(exec) / WTF::msPerSecond + (isDST ? WTF::secondsPerHour : 0));
181 ret.tm_isdst = isDST;
203 isDST = rhs.isDST;
221 int isDST;
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 98 assertEquals(time.isDst, anotherTime.isDst);
288 // call normalize() to make sure that isDst is set
289 local.normalize(false /* use isDst */);
291 local.normalize(true /* ignore isDst */);
305 // call normalize() to make sure that isDst is set
306 local.normalize(false /* use isDst */);
308 long millis = local.toMillis(true /* ignore isDst */);
327 local.isDst = test.dst1;
328 // call normalize() to make sure that isDst is se
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
TimeZoneTest.java 78 // 0 : time=-2005974400 Fri Jun 08 16:53:20 1906 GMT+00:00 = Fri Jun 08 23:59:40 1906 ICT isDst=0 offset= 380 gmtOffset=25580
79 // 1 : time=-1855983920 Fri Mar 10 16:54:40 1911 GMT+00:00 = Fri Mar 10 23:54:40 1911 ICT isDst=0 offset= 0 gmtOffset=25200
80 // 2 : time=-1819954800 Tue Apr 30 17:00:00 1912 GMT+00:00 = Wed May 01 01:00:00 1912 ICT isDst=0 offset= 3600 gmtOffset=28800
81 // 3 : time=-1220428800 Thu Apr 30 16:00:00 1931 GMT+00:00 = Thu Apr 30 23:00:00 1931 ICT isDst=0 offset= 0 gmtOffset=25200
105 // 0 : time=-1849388260 Fri May 26 01:02:20 1911 GMT+00:00 = Fri May 26 00:02:20 1911 GMT isDst=0 offset=-3600 gmtOffset=-3600
106 // 1 : time= 157770000 Wed Jan 01 01:00:00 1975 GMT+00:00 = Wed Jan 01 01:00:00 1975 GMT isDst=0 offset= 0 gmtOffset=0
  /frameworks/base/core/jni/
TimeUtils.h 70 int isdst)
78 this->t.tm_isdst = isdst;
Time.cpp 58 int64_t am = a.toMillis(false /* use isDst */);
59 int64_t bm = b.toMillis(false /* use isDst */);
166 (int)(((Time*)this)->toMillis(false /* use isDst */)/1000));
  /frameworks/base/core/java/android/text/format/
Time.java 104 public int isDst;
169 this.isDst = -1;
193 * to April 1. It also fills in weekDay, yearDay, isDst and gmtoff.
196 * If "ignoreDst" is true, then this method sets the "isDst" field to -1
198 * correct value for "isDst".
261 * Clears all values, setting the timezone to the given timezone. Sets isDst
280 this.isDst = -1;
422 * and the field <code>isDst</code> is set to -1 (unknown). To set those
518 * "isDst" field and will adjust the returned time if the "isDst" field i
    [all...]
  /bionic/libc/tools/zoneinfo/
ZoneInfo.java 69 byte[] isdst = new byte[ngmtoff];
73 isdst[i] = data[base + 6 * i + 4];
79 return new ZoneInfo(name, transitions, type, gmtoff, isdst, abbrev, data, base);
90 int[] gmtoff, byte[] isdst, byte[] abbrev,
95 mIsDsts = isdst;
  /external/icu4c/i18n/
vtzone.cpp 359 static void getDefaultTZName(const UnicodeString tzid, UBool isDST, UnicodeString& zonename) {
361 if (isDST) {
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/
WeekNumberTest.java 42 date.normalize(true /* ignore isDst */);
45 allDayDate.normalize(true /* ignore isDst */);
211 long millis = test.date.toMillis(false /* use isDst */);
223 long millis = test.date.toMillis(false /* use isDst */);
FormatDateRangeTest.java 56 date1.normalize(true /* ignore isDst */);
59 date2.normalize(true /* ignore isDst */);
185 long startMillis = dateTest.date1.toMillis(false /* use isDst */);
186 long endMillis = dateTest.date2.toMillis(false /* use isDst */);
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertAdapter.java 127 boolean isDST = time.isDst != 0;
132 isDST, TimeZone.SHORT, Locale.getDefault()));
AlertUtils.java 141 boolean isDST = time.isDst != 0;
143 isDST, TimeZone.SHORT, Locale.getDefault()));
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarSyncTestingBase.java 278 mDtstart = time.toMillis(false /* use isDst */);
280 mDtend = time.toMillis(false /* use isDst */);
310 mDtstart = time.toMillis(false /* use isDst */);
313 mDtend = time.toMillis(false /* use isDst */);
342 mOriginalInstance = time.toMillis(false /* use isDst */);
CalendarProvider2Test.java 301 begin = time.toMillis(false /* use isDst */);
303 end = time.toMillis(false /* use isDst */);
325 begin = time.toMillis(false /* use isDst */);
327 end = time.toMillis(false /* use isDst */);
353 begin = time.toMillis(false /* use isDst */);
355 end = time.toMillis(false /* use isDst */);
367 this.instances[index++] = time.toMillis(false /* use isDst */);
448 begin = time.toMillis(false /* use isDst */);
450 end = time.toMillis(false /* use isDst */);
455 instance = time.toMillis(false /* use isDst */);
    [all...]
  /external/icu4c/i18n/unicode/
vtzone.h 383 void writeZonePropsByTime(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
386 void writeZonePropsByDOM(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
390 void writeZonePropsByDOW(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
394 void writeZonePropsByDOW_GEQ_DOM(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
401 void writeZonePropsByDOW_LEQ_DOM(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
405 void writeFinalRule(VTZWriter& writer, UBool isDst, const AnnualTimeZoneRule* rule,
409 void beginZoneProps(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
411 void endZoneProps(VTZWriter& writer, UBool isDst, UErrorCode& status) const;
  /external/icu4c/tools/tzcode/
icuzdump.cpp 53 UnicodeString& format(UDate time, int32_t offset, UBool isDst, UnicodeString& appendTo) {
76 if (isDst) {
zic.c 125 const char * abbr, int isdst,
128 static int addtype(long gmtoff, const char * abbr, int isdst,
139 const char * letters, int isdst, int doquotes);
    [all...]
tz2icu.cpp 142 bool isdst; member in struct:ZoneType
399 // Read types (except for the isdst and isgmt flags, which come later (why??))
405 type.isdst = readbool(file);
411 if (type.isdst != (type.dstoffset != 0)) {
412 throw invalid_argument("isdst does not reflect dstoffset");
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon/
RecurrenceSet.java 162 dates[i] = time.toMillis(false /* use isDst */);
220 long millis = start.toMillis(false /* use isDst */);
478 long durationMillis = end.toMillis(false /* use isDst */)
479 - start.toMillis(false /* use isDst */);
RecurrenceProcessor.java 96 long untilTime = mIterator.toMillis(false /* use isDst */);
132 dtstart.toMillis(false /* use isDst */) /* range start */,
134 maxtime.toMillis(false /* use isDst */) : -1 /* range end */);
706 dates[i++] = mIterator.toMillis(true /* ignore isDst */);
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
DateConstructor.cpp 118 t.isDST = -1;
  /frameworks/base/core/java/com/android/internal/http/
HttpDateTime.java 121 return time.toMillis(false /* use isDst */);
  /packages/apps/Calendar/src/com/android/calendar/
AllInOneActivity.java     [all...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon/
RecurrenceProcessorTest.java 109 long[] out = rp.expand(dtstart, recur, rangeStart.toMillis(false /* use isDst */),
110 rangeEnd.toMillis(false /* use isDst */));
153 lastMillis = outCal.toMillis(true /* ignore isDst */);
158 expectedMillis = expectedLast.toMillis(true /* ignore isDst */);
    [all...]

Completed in 1547 milliseconds

1 2