Searched refs:startLess (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).
134 /// startLess - Return true if x is not in [a;b].
136 static inline bool startLess(const T &x, const T &a) { function in struct:llvm::IntervalMapInfo
157 /// startLess - Return true if x is not in [a;b).
158 static inline bool startLess(const T &x, const T &a) { function in struct:llvm::IntervalMapHalfOpenInfo
606 return Traits::startLess(x, start(i)) ? NotFound : value(i);
1084 if (empty() || Traits::startLess(x, start()) || Traits::stopLess(stop(), x))
1684 if (!Traits::startLess(a, CurStart) || !canCoalesceLeft(a, this->value())) {
1699 if (Traits::startLess(b, this->stop()) ||
1814 if (P.leafOffset() == 0 && Traits::startLess(
[all...]

Completed in 1025 milliseconds