Searched refs:end_index (Results 1 - 25 of 25) sorted by relevance

/external/chromium/chrome/browser/
H A Dcrash_upload_list_win.cc71 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/
H A Dblockhash.cc203 void BlockHash::AddAllBlocksThroughIndex(int end_index) { argument
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;
H A Dblockhash.h187 // (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/
H A Dcvapprox.cpp558 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
[all...]
H A Dcvfilter.cpp203 int bsz = buf_size, bw = x_range.end_index - x_range.start_index, bw1 = bw + ksize.width - 1;
208 x_range.end_index == prev_x_range.end_index &&
246 if( x_range.end_index - x_range.start_index <= 1 )
266 idx = x_range.end_index*pix_sz;
345 int width = prev_x_range.end_index - prev_x_range.start_index, width_n = width*pix_size;
500 prev_x_range.end_index != src_roi.x + src_roi.width )
H A Dcvmorph.cpp326 int width_n = (prev_x_range.end_index - prev_x_range.start_index)*pix_size;
H A Dcvshapedescr.cpp604 cvSetSeqReaderPos( &reader, slice.end_index );
/external/chromium/base/i18n/
H A Drtl.cc356 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/
H A Dstring_split.cc128 const typename STR::size_type end_index = str.find(s, begin_index); local
129 if (end_index == STR::npos) {
136 const STR term = str.substr(begin_index, end_index - begin_index);
140 begin_index = end_index + s.size();
/external/chromium/chrome/browser/history/
H A Dvisit_database.cc498 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/
H A Dextension_message_bundle.cc245 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/
H A Dbrowser_accessibility_win.h289 LONG end_index,
293 STDMETHODIMP scrollSubstringToPoint(LONG start_index, LONG end_index, argument
400 unsigned int end_index,
410 unsigned int end_index,
420 unsigned int end_index) {
288 scrollSubstringTo(LONG start_index, LONG end_index, enum IA2ScrollType scroll_type) argument
398 get_clippedSubstringBounds( unsigned int start_index, unsigned int end_index, int* x, int* y, int* width, int* height) argument
408 get_unclippedSubstringBounds( unsigned int start_index, unsigned int end_index, int* x, int* y, int* width, int* height) argument
418 scrollToSubstring( unsigned int start_index, unsigned int end_index) argument
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_popup_view_gtk_unittest.cc93 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/
H A Dgtest-param-util.h245 int end_index = 0; local
247 end_index++;
248 return end_index;
/external/gtest/include/gtest/internal/
H A Dgtest-param-util.h260 int end_index = 0; local
262 end_index++;
263 return end_index;
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h245 int end_index = 0; local
247 end_index++;
248 return end_index;
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-param-util.h263 int end_index = 0; local
265 end_index++;
266 return end_index;
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc172 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);
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DFontGtk.cpp195 attr->end_index = G_MAXUINT;
200 attr->end_index = G_MAXUINT;
/external/sonivox/jet_tools/JetCreator/
H A Dmidifile.py898 def DeleteEvents (self, start_index, end_index, move_meta_events=None):
902 if end_index is None:
903 end_index = len(self)
906 #for evt in self[start_index:end_index]:
912 for event in self[start_index:end_index]:
928 midi_file_logger.debug('DeleteEvents: deleted %d events in range(%s:%s)' % (delete_count, start_index, end_index))
929 midi_file_logger.debug('DeleteEvents: moved %d events in range(%s:%s)' % (move_count, start_index, end_index))
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp612 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;
1946 slice.end_index = slice.start_index + length;
1948 if( slice.end_index < total )
1956 if( slice.start_index > total - slice.end_index )
1958 int i, count = seq->total - slice.end_index;
1960 cvSetSeqReaderPos( &reader_from, slice.end_index );
1969 cvSeqPopMulti( seq, 0, slice.end_index
[all...]
/external/opencv/cv/include/
H A Dcv.hpp114 int get_width() const { return prev_x_range.end_index - prev_x_range.start_index; }
/external/webkit/Tools/Scripts/webkitpy/style/checkers/
H A Dcpp.py486 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]
/external/yaffs2/yaffs2/
H A Dyaffs_fs.c552 unsigned long end_index; local
576 end_index = inode->i_size >> PAGE_CACHE_SHIFT;
579 if (page->index < end_index) {
/external/opencv/cxcore/include/
H A Dcxtypes.h1092 int start_index, end_index; member in struct:CvSlice
1100 slice.end_index = end;

Completed in 698 milliseconds