OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stopLess
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/ADT/
IntervalMap.h
123
// 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) {
529
// - Traits::
stopLess
(start(i), stop(i)) - Non-empty, sane intervals.
531
// - Traits::
stopLess
(stop(i), start(i + 1) - Sorted.
553
/// @return First index with !
stopLess
(key[i].stop, x), or size.
557
assert((i == 0 || Traits::
stopLess
(stop(i - 1), x)) &&
559
while (i != Size && Traits::
stopLess
(stop(i), x)) ++i;
568
/// @return First index with !
stopLess
(key[i].stop, x), never size
[
all
...]
/external/llvm/include/llvm/CodeGen/
SlotIndexes.h
753
static inline bool
stopLess
(const SlotIndex &b, const SlotIndex &x) {
Completed in 29 milliseconds