Lines Matching defs:last
457 // Don't write a delimiter after the last byte.
560 size_t last = 0;
563 if (i != last) {
564 fields->push_back(source.substr(last, i - last));
566 last = i + 1;
569 if (last != source.length()) {
570 fields->push_back(source.substr(last, source.length() - last));
579 size_t last = 0;
582 fields->push_back(source.substr(last, i - last));
583 last = i + 1;
586 fields->push_back(source.substr(last, source.length() - last));
653 size_t last = 0;
656 fields->push_back(source.substr(last, i - last));
657 last = i + 1;
660 fields->push_back(source.substr(last, source.length() - last));