Home | History | Annotate | Download | only in base

Lines Matching refs:Exploded

198   // Represents an exploded time that can be formatted nicely. This is kind of
201 struct Exploded {
254 // Converts an exploded structure representing either the local time or UTC
256 static Time FromUTCExploded(const Exploded& exploded) {
257 return FromExploded(false, exploded);
259 static Time FromLocalExploded(const Exploded& exploded) {
260 return FromExploded(true, exploded);
286 // Fills the given exploded structure with either the local time or UTC from
288 void UTCExplode(Exploded* exploded) const {
289 return Explode(false, exploded);
291 void LocalExplode(Exploded* exploded) const {
292 return Explode(true, exploded);
352 void Explode(bool is_local, Exploded* exploded) const;
356 static Time FromExploded(bool is_local, const Exploded& exploded);