Lines Matching full:timestamp
59 a timestamp. It may also have heading and speed measurements as well as
88 Creates a QGeoPositionInfo for the given \a coordinate and \a timestamp.
90 QGeoPositionInfo::QGeoPositionInfo(const QGeoCoordinate &coordinate, const QDateTime ×tamp) in QGeoPositionInfo() argument
93 d->timestamp = timestamp; in QGeoPositionInfo()
128 // d->timestamp = other.d->timestamp; in operator =()
152 Returns true if the timestamp() and coordinate() values are both valid.
158 return d->timestamp.isValid() && d->coord.isValid(); in isValid()
162 Sets the date and time at which this position was reported to \a timestamp.
164 The \a timestamp must be in UTC time.
166 \sa timestamp()
168 void QGeoPositionInfo::setTimestamp(const QDateTime ×tamp) in setTimestamp() argument
170 d->timestamp = timestamp; in setTimestamp()
180 QDateTime QGeoPositionInfo::timestamp() const in timestamp() function in QGeoPositionInfo
182 return d->timestamp; in timestamp()
255 dbg.nospace() << "QGeoPositionInfo(" << info.d->timestamp; in operator <<()
256 dbg.nospace() << ", "; // timestamp force dbg.space() -> reverting here in operator <<()
330 stream << info.d->timestamp; in operator <<()
348 stream >> info.d->timestamp; in operator >>()
367 return timestamp == other.timestamp in operator ==()