Lines Matching defs:time
23 // The largest time that can be passed to OS date-time library functions.
27 // The largest time that can be stored in JSDate.
31 // Conservative upper bound on time that can be stored in JSDate
64 // ECMA 262 - ES#sec-timeclip TimeClip (time)
65 static double TimeClip(double time);
78 // ECMA 262 - ES#sec-local-time-zone-adjustment
79 int LocalOffsetInMs(int64_t time, bool is_utc) {
80 return GetLocalOffsetFromOS(time, is_utc);
113 // Computes a time equivalent to the given time according
118 // We solve this by mapping the time to a year with same leap-year-ness
151 // Breaks down the time value.
156 // We increment the stamp each time when the timezone information changes.
171 // The implementation relies on the fact that no time zones have
181 // Daylight Savings Time segment stores a segment of time where
190 // Computes the daylight savings offset for the given time.
195 // the before_ segment starts earlier than the given time and
196 // the after_ segment start later than the given time.
206 // if it starts later than the given time + kDefaultDSTDeltaInSec.
242 // ES6 section 20.3.1.14 MakeDate (day, time)
243 double MakeDate(double day, double time);