Searched defs:begin_index (Results 1 - 3 of 3) sorted by relevance

/external/chromium/googleurl/src/
H A Durl_file.h55 inline int FindNextSlash(const CHAR* spec, int begin_index, int spec_len) { argument
56 int idx = begin_index;
/external/chromium/base/
H A Dstring_split.cc129 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/
H A Dstrutil.cc172 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);

Completed in 1040 milliseconds