Searched refs:stopLess (Results 1 – 1 of 1) sorted by relevance
| /src/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | IntervalMap.h | 149 static inline bool stopLess(const T &b, const T &x) { in stopLess() function 174 static inline bool stopLess(const T &b, const T &x) { in stopLess() function 584 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) && in findFrom() 586 while (i != Size && Traits::stopLess(stop(i), x)) ++i; in findFrom() 599 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) && in safeFind() 601 while (Traits::stopLess(stop(i), x)) ++i; in safeFind() 633 assert(!Traits::stopLess(b, a) && "Invalid interval"); in insertFrom() 636 assert((i == 0 || Traits::stopLess(stop(i - 1), a))); in insertFrom() 637 assert((i == Size || !Traits::stopLess(stop(i), a))); in insertFrom() 638 assert((i == Size || Traits::stopLess(b, start(i))) && "Overlapping insert"); in insertFrom() [all …]
|