Lines Matching full:date
33 // Tries to mimic the Java Date.toString() format.
38 // Utility methods to create a date. This is useful for converting Java constructs
39 // which create a Date object. Returns a Date in the current local time.
40 UDate date(int32_t y, int32_t m, int32_t d, int32_t hr=0, int32_t min=0, int32_t sec=0);
42 // Utility methods to create a date. Returns a Date in UTC. This will differ
43 // from local dates returned by date() by the current default zone offset.
44 // Date utcDate(int y, int m, int d, int hr=0, int min=0, int sec=0);
46 // Utility method to get the fields of a date; similar to Date.getYear() etc.
47 void dateToFields(UDate date, int32_t& y, int32_t& m, int32_t& d, int32_t& hr, int32_t& min, int32_t& sec);