Home | History | Annotate | Download | only in google_apis

Lines Matching refs:exploded

49   base::Time::Exploded exploded = {0};
95 if (!base::StringToInt(parts[0], &exploded.year) ||
96 !base::StringToInt(parts[1], &exploded.month) ||
97 !base::StringToInt(parts[2], &exploded.day_of_month)) {
109 if (!base::StringToInt(parts[0], &exploded.hour) ||
110 !base::StringToInt(parts[1], &exploded.minute)) {
119 if (!base::StringToInt(seconds_parts[0], &exploded.second))
125 !base::StringToInt(seconds_parts[1], &exploded.millisecond)) {
130 exploded.day_of_week = 0;
131 if (!exploded.HasValidValues())
135 *parsed_time = base::Time::FromUTCExploded(exploded);
139 *parsed_time = base::Time::FromLocalExploded(exploded);
149 base::Time::Exploded exploded;
150 time.UTCExplode(&exploded);
153 exploded.year, exploded.month, exploded.day_of_month,
154 exploded.hour, exploded.minute, exploded.second, exploded.millisecond);
161 base::Time::Exploded exploded;
162 time.LocalExplode(&exploded);
165 exploded.year, exploded.month, exploded.day_of_month,
166 exploded.hour, exploded.minute, exploded.second, exploded.millisecond);