HomeSort by relevance Sort by last modified time
    Searched defs:end_index (Results 1 - 25 of 30) 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_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_org/base/strings/
string_split.cc 71 const typename STR::size_type end_index = str.find(s, begin_index); local
72 if (end_index == STR::npos) {
79 const STR term = str.substr(begin_index, end_index - begin_index);
83 begin_index = end_index + s.size();
  /external/chromium_org/chromeos/ime/
composition_text.h 28 uint32 end_index; // The exclusive end index. member in struct:chromeos::CompositionText::UnderlineAttribute
  /external/chromium_org/chrome/browser/history/
visit_database.cc 559 size_t start_index = 0, end_index = 0; local
560 while (end_index < visits_size) {
561 start_index = end_index;
562 end_index = end_index + batch_size < visits_size ? end_index + batch_size
569 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/chromium_org/tools/ipc_fuzzer/mutate/
message_util.cc 92 size_t end_index = INT_MAX; local
96 end_index = static_cast<size_t>(temp);
132 bool valid = (i >= start_index && i < 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 288 size_t end_index = text->length() - 1; local
289 char16 end = text->at(end_index);
292 --end_index;
296 text->substr(begin_index, end_index - begin_index + 1);
387 size_t end_index = text.length() - 1; local
388 if (text[end_index] == kPopDirectionalFormatting)
389 --end_index;
390 return text.substr(begin_index, end_index - begin_index + 1);
  /external/chromium_org/media/filters/
source_buffer_range.cc 218 int end_index = keyframe_map_.size() > 0 ? local
224 for (int i = 0; i < end_index; i++) {
  /external/chromium_org/ui/gfx/geometry/
r_tree_base.cc 230 // Choose |end_index| such that both Nodes after the split will have
232 size_t end_index = std::min(max_children, children_.size() - min_children); local
235 end_index,
239 end_index,
249 ChooseSplitIndex(min_children, end_index, low_bounds, high_bounds);
352 size_t end_index,
362 for (size_t p = start_index + 1; p < end_index; ++p) {
383 size_t end_index,
388 DCHECK_LE(start_index, end_index);
389 DCHECK_LE(end_index, low_bounds.size())
    [all...]
  /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 677 size_t end_index = records.size(); local
682 end_index = j;
688 ASSERT_NE(end_index, records.size());
689 ASSERT_NE(begin_index, end_index);
694 EXPECT_EQ(FileSystemOperation::END_COPY_ENTRY, records[end_index].type);
695 EXPECT_EQ(dest_url, records[end_index].dest_url);
699 EXPECT_EQ(begin_index + 1, end_index);
703 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 506 size_t end_index = std::string::npos; local
508 &start_index, &end_index);
513 end_index == std::string::npos ||
517 if (start_index < html_start || end_index < start_index)
522 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;
  /art/runtime/
utils.cc 928 unsigned int end_index = s.size() - 1; local
939 while (end_index >= start_index) {
940 if (!isspace(s[end_index])) {
943 end_index--;
947 if (end_index < start_index) {
950 // Start_index is the first non-space, end_index is the last one.
951 return s.substr(start_index, end_index - start_index + 1);
    [all...]
  /external/chromium_org/v8/src/compiler/
register-allocator.cc 1339 int end_index = local
    [all...]
  /external/chromium_org/pdf/pdfium/
pdfium_engine.cc 1392 int end_index = char_index; local
    [all...]
  /external/chromium_org/v8/src/heap/
mark-compact.cc 3398 uint32_t end_index = local
    [all...]

Completed in 2031 milliseconds

1 2