Lines Matching refs:time_in_day_ms
16138 int time_in_day_ms = DateCache::TimeInDay(local_time_ms, days); in DoGetField() local
16139 if (index == kMillisecond) return Smi::FromInt(time_in_day_ms % 1000); in DoGetField()
16141 return Smi::FromInt(time_in_day_ms); in DoGetField()
16171 int time_in_day_ms = DateCache::TimeInDay(time_ms, days); in GetUTCField() local
16173 case kHourUTC: return Smi::FromInt(time_in_day_ms / (60 * 60 * 1000)); in GetUTCField()
16174 case kMinuteUTC: return Smi::FromInt((time_in_day_ms / (60 * 1000)) % 60); in GetUTCField()
16175 case kSecondUTC: return Smi::FromInt((time_in_day_ms / 1000) % 60); in GetUTCField()
16176 case kMillisecondUTC: return Smi::FromInt(time_in_day_ms % 1000); in GetUTCField()
16178 case kTimeInDayUTC: return Smi::FromInt(time_in_day_ms); in GetUTCField()
16207 int time_in_day_ms = DateCache::TimeInDay(local_time_ms, days); in SetCachedFields() local
16211 int hour = time_in_day_ms / (60 * 60 * 1000); in SetCachedFields()
16212 int min = (time_in_day_ms / (60 * 1000)) % 60; in SetCachedFields()
16213 int sec = (time_in_day_ms / 1000) % 60; in SetCachedFields()