Home
last modified time | relevance | path

Searched refs:presentation_t (Results 1 – 3 of 3) sorted by relevance

/external/libwebm/webvtt/
Dwebvttparser.cc654 presentation_t Time::presentation() const { in presentation()
655 const presentation_t h = 1000LL * 3600LL * presentation_t(hours); in presentation()
656 const presentation_t m = 1000LL * 60LL * presentation_t(minutes); in presentation()
657 const presentation_t s = 1000LL * presentation_t(seconds); in presentation()
658 const presentation_t result = h + m + s + milliseconds; in presentation()
662 Time& Time::presentation(presentation_t d) { in presentation()
684 Time& Time::operator+=(presentation_t rhs) { in operator +=()
685 const presentation_t d = this->presentation(); in operator +=()
686 const presentation_t dd = d + rhs; in operator +=()
691 Time Time::operator+(presentation_t d) const { in operator +()
[all …]
Dwebvttparser.h45 typedef long long presentation_t; // NOLINT typedef
59 presentation_t presentation() const;
60 Time& presentation(presentation_t);
62 Time& operator+=(presentation_t);
63 Time operator+(presentation_t) const;
65 Time& operator-=(presentation_t);
66 presentation_t operator-(const Time&) const;
/external/libwebm/
Dsample_muxer_metadata.cc170 typedef libwebvtt::presentation_t time_ms_t; in AddChapter()