reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/IntervalMap.h
  581     assert((i == 0 || Traits::stopLess(stop(i - 1), x)) &&
  583     while (i != Size && Traits::stopLess(stop(i), x)) ++i;
  596     assert((i == 0 || Traits::stopLess(stop(i - 1), x)) &&
  598     while (Traits::stopLess(stop(i), x)) ++i;
  630   assert(!Traits::stopLess(b, a) && "Invalid interval");
  633   assert((i == 0 || Traits::stopLess(stop(i - 1), a)));
  634   assert((i == Size || !Traits::stopLess(stop(i), a)));
  635   assert((i == Size || Traits::stopLess(b, start(i))) && "Overlapping insert");
  716     assert((i == 0 || Traits::stopLess(stop(i - 1), x)) &&
  718     while (i != Size && Traits::stopLess(stop(i), x)) ++i;
  730     assert((i == 0 || Traits::stopLess(stop(i - 1), x)) &&
  732     while (Traits::stopLess(stop(i), x)) ++i;
 1073     if (empty() || Traits::startLess(x, start()) || Traits::stopLess(stop(), x))
 1147     return !Traits::stopLess(b, I.start());
 1483   if (!Traits::stopLess(path.leaf<Leaf>().stop(path.leafSize() - 1), x)) {
 1494       if (!Traits::stopLess(path.node<Branch>(l).stop(path.offset(l)), x)) {
 1503     if (!Traits::stopLess(map->rootBranch().stop(path.offset(0)), x)) {
 1828         if (Traits::stopLess(b, CurLeaf.start(0)) &&