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

1 2

  /external/ceres-solver/internal/ceres/
split.cc 94 string::size_type begin_index, end_index; local
97 end_index = full.find_first_of(delim, begin_index);
98 if (end_index == string::npos) {
102 *result++ = full.substr(begin_index, (end_index - begin_index));
103 begin_index = full.find_first_not_of(delim, end_index);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mock.py 87 end_index = self._read_data.find('\n', self._read_pos) + 1
88 if not end_index:
89 end_index = len(self._read_data)
90 return self._read_up_to(end_index)
97 end_index = min(len(self._read_data), self._read_pos + length)
98 return self._read_up_to(end_index)
100 def _read_up_to(self, end_index):
101 line = self._read_data[self._read_pos:end_index]
102 self._read_pos = 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/sdch/open-vcdiff/src/
blockhash.cc 203 void BlockHash::AddAllBlocksThroughIndex(int end_index) {
204 if (end_index > static_cast<int>(source_size_)) {
206 " with index " << end_index
211 if (end_index <= last_index_added) {
213 " with index " << end_index
218 int end_limit = end_index;
blockhash.h 187 // (last_block_added_ * kBlockSize, end_index), exclusive of the endpoints.
188 // If end_index <= the last index added (last_block_added_ * kBlockSize),
191 // A partial block beginning anywhere up to (end_index - 1) is also added,
208 void AddAllBlocksThroughIndex(int end_index);
  /external/open-vcdiff/src/
blockhash.cc 204 void BlockHash::AddAllBlocksThroughIndex(int end_index) {
205 if (end_index > static_cast<int>(source_size_)) {
207 " with index " << end_index
212 if (end_index <= last_index_added) {
214 " with index " << end_index
219 int end_limit = end_index;
blockhash.h 187 // (last_block_added_ * kBlockSize, end_index), exclusive of the endpoints.
188 // If end_index <= the last index added (last_block_added_ * kBlockSize),
191 // A partial block beginning anywhere up to (end_index - 1) is also added,
208 void AddAllBlocksThroughIndex(int end_index);
  /external/opencv/cv/src/
cvapprox.cpp 558 slice.end_index = count - 1;
603 slice.end_index = right_slice.start_index += slice.start_index;
606 right_slice.end_index = slice.start_index;
607 if( right_slice.end_index < right_slice.start_index )
608 right_slice.end_index += count;
622 cvSetSeqReaderPos( &reader, slice.end_index );
628 if( slice.end_index > slice.start_index + 1 )
637 for( i = slice.start_index + 1; i < slice.end_index; i++ )
653 assert( slice.end_index > slice.start_index );
666 right_slice.end_index = slice.end_index
    [all...]
  /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/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/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/chrome/common/extensions/
extension_message_bundle.cc 245 std::string::size_type end_index =
247 if (end_index == message->npos)
252 message->substr(beg_index, end_index - beg_index);
268 end_index - beg_index + var_begin_delimiter_size +
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_win.h 289 LONG end_index,
293 STDMETHODIMP scrollSubstringToPoint(LONG start_index, LONG end_index,
400 unsigned int end_index,
410 unsigned int end_index,
420 unsigned int end_index) {
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view_gtk_unittest.cc 93 if (attr->end_index <= location)
118 if (attr->end_index > (guint)end_range) {
122 retval.length_ = attr->end_index - location;
  /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/gtest/include/gtest/internal/
gtest-param-util.h 245 int end_index = 0; local
247 end_index++;
248 return end_index;
  /external/libvpx/libvpx/third_party/googletest/src/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/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;
  /external/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);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gtk/
FontGtk.cpp 195 attr->end_index = G_MAXUINT;
200 attr->end_index = G_MAXUINT;
  /external/opencv/cxcore/src/
cxdatastructs.cpp 612 int length = slice.end_index - slice.start_index;
618 if( slice.end_index <= 0 )
619 slice.end_index += total;
621 length = slice.end_index - slice.start_index;
    [all...]
  /external/opencv/cv/include/
cv.hpp 114 int get_width() const { return prev_x_range.end_index - prev_x_range.start_index; }
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 486 end_index = -1
490 start_index = end_index + 1
491 end_index = skeleton_parameters.find(',', start_index)
494 if end_index == -1:
496 row = single_line_view.convert_column_to_row(end_index)
499 skeleton_parameter = skeleton_parameters[start_index:end_index]
501 parameter = single_line_view.single_line[start_index:end_index]
    [all...]

Completed in 2225 milliseconds

1 2