HomeSort by relevance Sort by last modified time
    Searched defs:begin_index (Results 1 - 3 of 3) sorted by null

  /external/ceres-solver/internal/ceres/
split.cc 94 string::size_type begin_index, end_index; local
95 begin_index = full.find_first_not_of(delim);
96 while (begin_index != string::npos) {
97 end_index = full.find_first_of(delim, begin_index);
99 *result++ = full.substr(begin_index);
102 *result++ = full.substr(begin_index, (end_index - begin_index));
103 begin_index = full.find_first_not_of(delim, end_index);
  /external/chromium/base/
string_split.cc 129 typename STR::size_type begin_index = 0; local
131 const typename STR::size_type end_index = str.find(s, begin_index);
133 const STR term = str.substr(begin_index);
139 const STR term = str.substr(begin_index, end_index - begin_index);
143 begin_index = end_index + s.size();
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 172 string::size_type begin_index, end_index; local
173 begin_index = full.find_first_not_of(delim);
174 while (begin_index != string::npos) {
175 end_index = full.find_first_of(delim, begin_index);
177 *result++ = full.substr(begin_index);
180 *result++ = full.substr(begin_index, (end_index - begin_index));
181 begin_index = full.find_first_not_of(delim, end_index);
    [all...]

Completed in 520 milliseconds