HomeSort by relevance Sort by last modified time
    Searched defs:end_index (Results 1 - 25 of 37) sorted by null

1 2

  /external/ceres-solver/internal/ceres/
split.cc 96 string::size_type begin_index, end_index; local
99 end_index = full.find_first_of(delim, begin_index);
100 if (end_index == string::npos) {
104 *result++ = full.substr(begin_index, (end_index - begin_index));
105 begin_index = full.find_first_not_of(delim, end_index);
  /external/chromium/chrome/browser/
crash_upload_list_win.cc 71 size_t end_index = message.find(pattern_suffix, start_index); local
72 if (end_index != std::wstring::npos) {
74 message.substr(start_index, end_index - start_index);
  /external/chromium_org/chrome/browser/
crash_upload_list_win.cc 73 size_t end_index = message.find(pattern_suffix, start_index); local
74 if (end_index != std::wstring::npos) {
76 message.substr(start_index, end_index - start_index);
  /external/chromium/base/
string_split.cc 131 const typename STR::size_type end_index = str.find(s, begin_index); local
132 if (end_index == STR::npos) {
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 122 const typename STR::size_type end_index = str.find(s, begin_index); local
123 if (end_index == STR::npos) {
130 const STR term = str.substr(begin_index, end_index - begin_index);
134 begin_index = end_index + s.size();
  /external/chromium_org/chromeos/ime/
ibus_text.h 26 uint32 end_index; // The exclusive end index. member in struct:chromeos::IBusText::UnderlineAttribute
  /external/chromium/base/i18n/
rtl.cc 356 size_t end_index = text.length() - 1; local
357 if (text[end_index] == kPopDirectionalFormatting)
358 --end_index;
359 return text.substr(begin_index, end_index - begin_index + 1);
  /external/chromium/chrome/browser/history/
visit_database.cc 498 size_t start_index = 0, end_index = 0; local
499 while (end_index < visits_size) {
500 start_index = end_index;
501 end_index = end_index + batch_size < visits_size ? end_index + batch_size
508 for (size_t j = start_index; j < end_index; j++) {
  /external/chromium_org/chrome/browser/history/
visit_database.cc 568 size_t start_index = 0, end_index = 0; local
569 while (end_index < visits_size) {
570 start_index = end_index;
571 end_index = end_index + batch_size < visits_size ? end_index + batch_size
578 for (size_t j = start_index; j < end_index; j++) {
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_primitive_restart.c 172 GLuint end_index; local
203 end_index = prims[prim_num].start + prims[prim_num].count;
211 temp_prim.count = MIN2(sub_end_index, end_index) - temp_prim.start;
223 if (sub_end_index >= end_index) {
  /external/mesa3d/src/mesa/vbo/
vbo_primitive_restart.c 172 GLuint end_index; local
203 end_index = prims[prim_num].start + prims[prim_num].count;
211 temp_prim.count = MIN2(sub_end_index, end_index) - temp_prim.start;
223 if (sub_end_index >= end_index) {
  /external/chromium_org/base/i18n/
rtl.cc 279 size_t end_index = text->length() - 1; local
280 char16 end = text->at(end_index);
283 --end_index;
287 text->substr(begin_index, end_index - begin_index + 1);
376 size_t end_index = text.length() - 1; local
377 if (text[end_index] == kPopDirectionalFormatting)
378 --end_index;
379 return text.substr(begin_index, end_index - begin_index + 1);
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/chromium_org/base/json/
json_parser.cc 809 int end_index = start_index; local
818 end_index = index_;
831 end_index = index_;
843 end_index = index_;
867 StringPiece num_string(num_start, end_index - start_index);
  /external/chromium_org/content/browser/fileapi/
copy_or_move_operation_delegate_unittest.cc 666 size_t end_index = records.size(); local
671 end_index = j;
677 ASSERT_NE(end_index, records.size());
678 ASSERT_NE(begin_index, end_index);
683 EXPECT_EQ(FileSystemOperation::END_COPY_ENTRY, records[end_index].type);
684 EXPECT_EQ(dest_url, records[end_index].dest_url);
688 EXPECT_EQ(begin_index + 1, end_index);
692 for (size_t j = begin_index + 1; j < end_index; ++j) {
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumbermatcher.cc 708 size_t end_index = rfc3966_format.find(';'); local
709 if (end_index == string::npos) {
710 end_index = rfc3966_format.length();
715 end_index - start_index),
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
strutil.cc 172 string::size_type begin_index, end_index; local
175 end_index = full.find_first_of(delim, begin_index);
176 if (end_index == string::npos) {
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
213 end_index = full.find_first_of(delim, begin_index);
214 if (end_index == string::npos) {
218 *result++ = full.substr(begin_index, (end_index - begin_index));
219 begin_index = end_index + 1
    [all...]
  /external/chromium_org/ui/base/clipboard/
clipboard_win.cc 502 size_t end_index = std::string::npos; local
504 &start_index, &end_index);
509 end_index == std::string::npos ||
513 if (start_index < html_start || end_index < start_index)
518 offsets.push_back(end_index - html_start);
  /external/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-param-util.h 265 int end_index = 0; local
267 end_index++;
268 return end_index;
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 263 int end_index = 0; local
265 end_index++;
266 return end_index;

Completed in 1763 milliseconds

1 2