Home | History | Annotate | Download | only in intltest

Lines Matching refs:date

11 *   Date        Name        Description
136 // Tries to mimic the Java Date.toString() format.
178 // Utility methods to create a date. This is useful for converting Java constructs
179 // which create a Date object.
181 CalendarTimeZoneTest::date(int32_t y, int32_t m, int32_t d, int32_t hr, int32_t min, int32_t sec)
186 cal->set(1900 + y, m, d, hr, min, sec); // Add 1900 to follow java.util.Date protocol
198 // Utility methods to create a date. The returned Date is UTC rather than local.
199 /*Date
205 Date dt = date(y, m, d, hr, min, sec) +
217 // Mimics Date.getYear() etc.
219 CalendarTimeZoneTest::dateToFields(UDate date, int32_t& y, int32_t& m, int32_t& d, int32_t& hr, int32_t& min, int32_t& sec)
224 cal->setTime(date, status);