Lines Matching defs:ival
257 inline std::ostream &operator<<(std::ostream &os, PathInterval const &ival) {
259 if (ival.crossesStart()) {
260 os << ival.from() << " -> 0: 0.0 -> " << ival.to();
262 os << ival.from() << " -> " << ival.to();
589 PathInterval ival(from, to, cross_start, size_closed());
590 appendPortionTo(p, ival, boost::none, boost::none);
595 void appendPortionTo(Path &p, PathInterval const &ival) const {
596 appendPortionTo(p, ival, boost::none, boost::none);
602 void appendPortionTo(Path &p, PathInterval const &ival,
629 Path portion(PathInterval const &ival) const {
632 appendPortionTo(ret, ival);