Searched refs:begin_index (Results 1 – 1 of 1) sorted by relevance
199 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local200 begin_index = full.find_first_not_of(delim); in SplitStringToIteratorUsing()201 while (begin_index != string::npos) { in SplitStringToIteratorUsing()202 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorUsing()204 *result++ = full.substr(begin_index); in SplitStringToIteratorUsing()207 *result++ = full.substr(begin_index, (end_index - begin_index)); in SplitStringToIteratorUsing()208 begin_index = full.find_first_not_of(delim, end_index); in SplitStringToIteratorUsing()236 string::size_type begin_index, end_index; in SplitStringToIteratorAllowEmpty() local237 begin_index = 0; in SplitStringToIteratorAllowEmpty()240 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorAllowEmpty()[all …]