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

/external/ceres-solver/internal/ceres/
H A Dsplit.cc96 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_org/url/
H A Durl_file.h30 inline int FindNextSlash(const CHAR* spec, int begin_index, int spec_len) { argument
31 int idx = begin_index;
/external/chromium_org/base/i18n/
H A Drtl.cc281 size_t begin_index = 0;
282 char16 begin = text->at(begin_index);
285 ++begin_index;
296 text->substr(begin_index, end_index - begin_index + 1);
380 size_t begin_index = 0;
381 char16 begin = text[begin_index];
386 ++begin_index;
390 return text.substr(begin_index, end_index - begin_index
[all...]
/external/chromium_org/ui/base/l10n/
H A Dl10n_util_collator.h123 // |begin_index| points to the start position of elements in the vector which
129 unsigned int begin_index,
132 DCHECK(begin_index < end_index &&
141 stable_sort(elements->begin() + begin_index,
145 sort(elements->begin() + begin_index, elements->begin() + end_index, c);
127 SortVectorWithStringKey(const std::string& locale, std::vector<Element>* elements, unsigned int begin_index, unsigned int end_index, bool needs_stable_sort) argument
/external/chromium_org/base/strings/
H A Dstring_split.cc69 typename STR::size_type begin_index = 0; local
71 const typename STR::size_type end_index = str.find(s, begin_index);
73 const STR term = str.substr(begin_index);
79 const STR term = str.substr(begin_index, end_index - begin_index);
83 begin_index = end_index + s.size();
/external/chromium_org/third_party/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);
209 string::size_type begin_index, end_index; local
210 begin_index
[all...]
/external/chromium_org/content/browser/fileapi/
H A Dcopy_or_move_operation_delegate_unittest.cc676 size_t begin_index = records.size(); local
680 if (begin_index == records.size())
681 begin_index = j;
687 ASSERT_NE(begin_index, records.size());
689 ASSERT_NE(begin_index, end_index);
692 records[begin_index].type);
693 EXPECT_FALSE(records[begin_index].dest_url.is_valid());
699 EXPECT_EQ(begin_index + 1, end_index);
703 for (size_t j = begin_index + 1; j < end_index; ++j) {
/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);
/external/chromium_org/tools/gn/
H A Dfilesystem_utils.cc429 size_t begin_index = 1; local
434 begin_index = 2;
437 for (size_t i = begin_index; i < value.size(); i++) {

Completed in 379 milliseconds