Searched refs:begin_index (Results 1 - 4 of 4) 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/chromium/base/i18n/
H A Drtl.cc349 size_t begin_index = 0;
350 char16 begin = text[begin_index];
355 ++begin_index;
359 return text.substr(begin_index, end_index - begin_index + 1);
/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 559 milliseconds