Searched refs:timeSequence (Results 1 – 1 of 1) sorted by relevance
113 const auto& timeSequence = tsptr->second; in REQUIRES() local114 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() local151 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()[all …]