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

  /external/ceres-solver/internal/ceres/
split.cc 96 string::size_type begin_index, end_index; local
97 begin_index = full.find_first_not_of(delim);
98 while (begin_index != string::npos) {
99 end_index = full.find_first_of(delim, begin_index);
101 *result++ = full.substr(begin_index);
104 *result++ = full.substr(begin_index, (end_index - begin_index));
105 begin_index = full.find_first_not_of(delim, end_index);
  /external/chromium/googleurl/src/
url_file.h 55 inline int FindNextSlash(const CHAR* spec, int begin_index, int spec_len) {
56 int idx = begin_index;
  /external/chromium_org/url/
url_file.h 30 inline int FindNextSlash(const CHAR* spec, int begin_index, int spec_len) {
31 int idx = begin_index;
  /external/chromium_org/base/i18n/
rtl.cc 272 size_t begin_index = 0;
273 char16 begin = text->at(begin_index);
276 ++begin_index;
287 text->substr(begin_index, end_index - begin_index + 1);
369 size_t begin_index = 0;
370 char16 begin = text[begin_index];
375 ++begin_index;
379 return text.substr(begin_index, end_index - begin_index + 1)
    [all...]
  /external/chromium_org/ui/base/l10n/
l10n_util_collator.h 114 // |begin_index| points to the start position of elements in the vector which
120 unsigned int begin_index,
123 DCHECK(begin_index < end_index &&
132 stable_sort(elements->begin() + begin_index,
136 sort(elements->begin() + begin_index, elements->begin() + end_index, c);
  /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/chromium_org/base/strings/
string_split.cc 120 typename STR::size_type begin_index = 0; local
122 const typename STR::size_type end_index = str.find(s, begin_index);
124 const STR term = str.substr(begin_index);
130 const STR term = str.substr(begin_index, end_index - begin_index);
134 begin_index = end_index + s.size();
  /external/chromium/base/i18n/
rtl.cc 349 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/chromium_org/third_party/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);
209 string::size_type begin_index, end_index; local
210 begin_index = 0
    [all...]
  /external/chromium_org/tools/gn/
filesystem_utils.cc 253 size_t begin_index = 1; local
258 begin_index = 2;
261 for (size_t i = begin_index; i < value.size(); i++) {
  /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 1701 milliseconds