Searched refs:stopLess (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
H A D | IntervalMap.h | 151 static inline bool stopLess(const T &b, const T &x) { in stopLess() function 176 static inline bool stopLess(const T &b, const T &x) { in stopLess() function 586 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) && in findFrom() 588 while (i != Size && Traits::stopLess(stop(i), x)) ++i; in findFrom() 601 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) && in safeFind() 603 while (Traits::stopLess(stop(i), x)) ++i; in safeFind() 635 assert(!Traits::stopLess(b, a) && "Invalid interval"); in insertFrom() 638 assert((i == 0 || Traits::stopLess(stop(i - 1), a))); in insertFrom() 639 assert((i == Size || !Traits::stopLess(stop(i), a))); in insertFrom() 640 assert((i == Size || Traits::stopLess(b, start(i))) && "Overlapping insert"); in insertFrom() [all …]
|