Home | History | Annotate | Download | only in time

Lines Matching refs:exploded

496   // Represents an exploded time that can be formatted nicely. This is kind of
499 struct BASE_EXPORT Exploded {
512 // Exploded value can be successfully converted to a Time value.
628 // Converts an exploded structure representing either the local time or UTC
631 static bool FromUTCExploded(const Exploded& exploded,
633 return FromExploded(false, exploded, time);
635 static bool FromLocalExploded(const Exploded& exploded,
637 return FromExploded(true, exploded, time);
657 // Fills the given exploded structure with either the local time or UTC from
659 void UTCExplode(Exploded* exploded) const {
660 return Explode(false, exploded);
662 void LocalExplode(Exploded* exploded) const {
663 return Explode(true, exploded);
686 void Explode(bool is_local, Exploded* exploded) const;
691 // to non-exploded time.
693 const Exploded& exploded,
708 static bool ExplodedMostlyEquals(const Exploded& lhs,
709 const Exploded& rhs) WARN_UNUSED_RESULT;