Home
last modified time | relevance | path

Searched refs:stopLess (Results 1 – 1 of 1) sorted by relevance

/external/llvm/include/llvm/ADT/
DIntervalMap.h143 static inline bool stopLess(const T &b, const T &x) { in stopLess() function
164 static inline bool stopLess(const T &b, const T &x) { in stopLess() function
578 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) && in findFrom()
580 while (i != Size && Traits::stopLess(stop(i), x)) ++i; in findFrom()
593 assert((i == 0 || Traits::stopLess(stop(i - 1), x)) && in safeFind()
595 while (Traits::stopLess(stop(i), x)) ++i; in safeFind()
627 assert(!Traits::stopLess(b, a) && "Invalid interval"); in insertFrom()
630 assert((i == 0 || Traits::stopLess(stop(i - 1), a))); in insertFrom()
631 assert((i == Size || !Traits::stopLess(stop(i), a))); in insertFrom()
632 assert((i == Size || Traits::stopLess(b, start(i))) && "Overlapping insert"); in insertFrom()
[all …]