Home | History | Annotate | Download | only in spreadsortlib

Lines Matching refs:nextOffset

1006   		unsigned nextOffset = char_offset;

1011 //ignore empties, but if the nextOffset would exceed the length or not match, exit; we've found the last matching character
1012 if((*curr).size() > char_offset && ((*curr).size() <= (nextOffset + 1) || (*curr)[nextOffset] != (*first)[nextOffset])) {
1018 ++nextOffset;
1020 char_offset = nextOffset;
1028 unsigned nextOffset = char_offset;
1033 //ignore empties, but if the nextOffset would exceed the length or not match, exit; we've found the last matching character
1034 if(length(*curr) > char_offset && (length(*curr) <= (nextOffset + 1) || getchar((*curr), nextOffset) != getchar((*first), nextOffset))) {
1040 ++nextOffset;
1042 char_offset = nextOffset;