Searched defs:stopLess (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DIntervalMap.h123 // The point x is contained in [a;b] when !startLess(x, a) && !stopLess(b, x).
126 // allowed. This is so that stopLess(a, b) can be used to determine if two
140 /// stopLess - Return true if x is not in [a;b].
142 static inline bool stopLess(const T &b, const T &x) { function in struct:llvm::IntervalMapInfo
162 /// stopLess - Return true if x is not in [a;b).
163 static inline bool stopLess(const T &b, const T &x) { function in struct:llvm::IntervalMapHalfOpenInfo
549 // - Traits::stopLess(start(i), stop(i)) - Non-empty, sane intervals.
551 // - Traits::stopLess(stop(i), start(i + 1) - Sorted.
573 /// @return First index with !stopLess(key[i].stop, x), or size.
577 assert((i == 0 || Traits::stopLess(sto
[all...]

Completed in 47 milliseconds