Lines Matching refs:start
288 // start a new array if reference token is 0
293 // start a new object otherwise
684 // - start: position after the previous slash
689 start = 1;
690 // we can stop if start == 0 (if slash == string_t::npos)
691 start != 0;
694 start = (slash == string_t::npos) ? 0 : slash + 1,
696 slash = reference_string.find_first_of('/', start))
699 // (start) and the last slash (slash).
700 auto reference_token = reference_string.substr(start, slash - start);