Home | History | Annotate | Download | only in base

Lines Matching refs:Exploded

343       Time::Exploded exploded;
344 exploded.year = time.tm_year + 1900;
345 exploded.month = time.tm_mon + 1;
346 exploded.day_of_week = time.tm_wday;
347 exploded.day_of_month = time.tm_mday;
348 exploded.hour = time.tm_hour;
349 exploded.minute = time.tm_min;
350 exploded.second = time.tm_sec;
351 exploded.millisecond = 0;
353 *result = Time::FromUTCExploded(exploded);