Home
last modified time | relevance | path

Searched refs:begin_index (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dstrutil.cc199 string::size_type begin_index, end_index; in SplitStringToIteratorUsing() local
200 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() local
237 begin_index = 0; in SplitStringToIteratorAllowEmpty()
240 end_index = full.find_first_of(delim, begin_index); in SplitStringToIteratorAllowEmpty()
[all …]