Lines Matching defs:index
469 over_bounds(long long index) const
470 {return (index + offset()) >= (long long) size();}
473 check_index_against_bound(int index) const
475 if (over_bounds(index))
478 o << "index '" << index
490 /// space, so that one can address elements in the index range
512 operator[](int index) const
513 {return at(index);}
516 operator[](int index)
517 {return at(index);}
520 at(long long index)
522 //check_index_against_bound(index);
523 long long i = index + offset();
528 at(long long index) const
530 check_index_against_bound(index);
531 long long i = offset() + index;
558 /// - An insertion point: this is the index (starting at 0) of the
600 /// This encapsulates the index of the element A that got deleted.
612 index() const
616 index(int i)
1299 /// Here, note that the real content of a and b should start at index
1302 /// at index 0, we just get some non-used value.
1387 /// Here, note that the real content of a and b should start at index
1390 /// at index 0, we just get some non-used value.
2034 << "\t happened at index: ";
2048 out << i->index() << " (" << str1_base[i->index()] << ")";
2064 out << "\t before index of first sequence: " << idx + 1
2067 out << "\t after index of first sequence: " << idx