Lines Matching refs:timeSequence
113 const auto& timeSequence = tsptr->second; in REQUIRES() local
114 auto eptr = timeSequence.upper_bound(time); in REQUIRES()
115 if (eptr == timeSequence.begin()) return BAD_VALUE; in REQUIRES()
117 if (eptr == timeSequence.end()) return BAD_VALUE; in REQUIRES()
149 auto& timeSequence = mPropertyMap[property]; in REQUIRES() local
151 if (timeSequence.empty() // no elements in REQUIRES()
153 || timeSequence.rbegin()->second != el) { // value changed in REQUIRES()
154 timeSequence.emplace_hint(timeSequence.end(), time, std::move(el)); in REQUIRES()
156 if (timeSequence.size() > kTimeSequenceMaxElements) { in REQUIRES()
159 timeSequence.erase(timeSequence.begin()); in REQUIRES()
192 const auto timeSequence = tsPair.second; in dump() local
193 auto eptr = timeSequence.lower_bound(time); in dump()
194 if (eptr == timeSequence.end()) { in dump()
209 if (++eptr == timeSequence.end()) { in dump()