HomeSort by relevance Sort by last modified time
    Searched full:start_index (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium/chrome/browser/
crash_upload_list_win.cc 68 size_t start_index = message.find(pattern_prefix); local
69 if (start_index != std::wstring::npos) {
70 start_index += pattern_prefix.size();
71 size_t end_index = message.find(pattern_suffix, start_index);
74 message.substr(start_index, end_index - start_index);
  /external/opencv/cv/src/
cvapprox.cpp 551 right_slice.start_index = count;
557 slice.start_index = 0;
571 right_slice.start_index = 0;
576 cvSetSeqReaderPos( &reader, right_slice.start_index, 1 );
592 right_slice.start_index = j;
602 slice.start_index = cvGetSeqReaderPos( &reader );
603 slice.end_index = right_slice.start_index += slice.start_index;
605 right_slice.start_index -= right_slice.start_index >= count ? count : 0
    [all...]
  /external/chromium/base/
sys_info_chromeos.cc 92 size_t start_index = lsb_release.find_first_of('=', version_key_index); local
93 start_index++; // Move past '='.
94 size_t length = lsb_release.find_first_of('\n', start_index) - start_index;
95 std::string version = lsb_release.substr(start_index, length);
  /external/libnfc-nxp/src/
phLlcNfc_Timer.c 377 uint8_t start_index = 0; local
388 while (start_index < (timer_count - no_of_guard_to_del))
391 ps_timer_info->guard_to_value[start_index] = (uint16_t)
393 (no_of_guard_to_del + start_index)]);
395 ps_timer_info->iframe_send_count[start_index] = (uint8_t)
397 (no_of_guard_to_del + start_index)]);
399 PH_LLCNFC_DEBUG("GUARD TIMER NS INDEX DELETED : 0x%02X\n", ps_timer_info->timer_ns_value[start_index]);
401 ps_timer_info->timer_ns_value[start_index] = (uint8_t)
403 (no_of_guard_to_del + start_index)]);
405 ps_timer_info->frame_type[start_index] = (uint8_t
710 uint8_t start_index = 0; local
    [all...]
  /frameworks/base/tools/orientationplot/
orientationplot.py 366 start_index = prefix_index + len(prefix)
367 delim_index = line.find(',', start_index)
369 return line[start_index:]
371 return line[start_index:delim_index]
385 start_index = prefix_index + len(prefix) + 1
386 delim_index = line.find(']', start_index)
391 while start_index < delim_index:
392 comma_index = line.find(', ', start_index, delim_index)
394 result.append(float(line[start_index:delim_index]))
396 result.append(float(line[start_index:comma_index])
    [all...]
  /external/opencv/cxcore/src/
cxdatastructs.cpp 594 id += block->start_index - seq->first->start_index;
612 int length = slice.end_index - slice.start_index;
616 if( slice.start_index < 0 )
617 slice.start_index += total;
621 length = slice.end_index - slice.start_index;
659 CV_CALL( cvSetSeqReaderPos( &reader, slice.start_index, 0 ));
722 block->start_index = 0;
834 block->start_index = block == block->prev ? 0 :
835 block->prev->start_index + block->prev->count
    [all...]
  /external/v8/src/
regexp-macro-assembler.cc 76 int start_index) {
79 ASSERT(start_index >= 0);
80 ASSERT(start_index <= subject->length());
91 return address + start_index;
100 return reinterpret_cast<const byte*>(data + start_index);
regexp.js 333 var start_index;
336 start_index = lastMatchInfo[CAPTURE0];
340 start_index = override[override.length - 2];
343 return SubString(subject, 0, start_index);
348 var start_index;
351 start_index = lastMatchInfo[CAPTURE1];
356 start_index = override[override.length - 2] + subject.length;
358 return SubString(subject, start_index, subject.length);
string-search.h 130 int start_index);
134 int start_index);
138 int start_index);
143 int start_index);
147 int start_index);
302 int start_index) {
313 int index = start_index;
421 int start_index) {
433 int index = start_index; // No matches found prior to this index.
561 int start_index) {
    [all...]
  /external/chromium/chrome/browser/ui/views/extensions/
browser_action_overflow_menu_controller.h 39 int start_index);
98 // won't show all items, just the one starting at |start_index| and above.
browser_action_overflow_menu_controller.cc 23 int start_index)
28 start_index_(start_index),
34 for (size_t i = start_index; i < views_->size(); ++i) {
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_win.h 288 STDMETHODIMP scrollSubstringTo(LONG start_index,
293 STDMETHODIMP scrollSubstringToPoint(LONG start_index, LONG end_index,
399 unsigned int start_index,
409 unsigned int start_index,
419 unsigned int start_index,
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_menu_controller_views.cc 59 int start_index; local
61 menu_button, &anchor, &start_index);
261 int start_index; local
263 bookmark_bar_->GetNodeForButtonAt(bookmark_bar_loc, &start_index);
269 alt_menu = CreateMenu(node, start_index);
275 *button, anchor, &start_index);
bookmark_bar_view.h 213 // to the button and |start_index| is set to 0. If a overflow button is
215 // returned and |start_index| is set to the index of the first node
218 int* start_index);
228 int* start_index);
bookmark_bar_view.cc 786 int* start_index) {
787 *start_index = 0;
806 *start_index = GetFirstHiddenNodeIndex();
834 int* start_index) {
849 *start_index = GetFirstHiddenNodeIndex();
851 *start_index = 0;
1157 int start_index = 0; local
1348 int start_index = 0; local
    [all...]
  /frameworks/base/tools/velocityplot/
velocityplot.py 248 start_index = prefix_index + len(prefix)
249 delim_index = line.find(',', start_index)
251 return line[start_index:]
253 return line[start_index:delim_index]
  /external/chromium/chrome/browser/tabs/
tab_strip_model.cc 395 const NavigationController* opener, int start_index, bool use_group) const {
397 DCHECK(ContainsIndex(start_index));
399 // Check tabs after start_index first.
400 for (int i = start_index + 1; i < count(); ++i) {
404 // Then check tabs before start_index, iterating backwards.
405 for (int i = start_index - 1; i >= 0; --i) {
414 int start_index) const {
416 DCHECK(ContainsIndex(start_index));
418 for (int i = 0; i < start_index; ++i) {
426 const NavigationController* opener, int start_index) const
    [all...]
tab_strip_model.h 291 // spawned by the specified NavigationController after |start_index|.
296 int start_index,
302 int start_index) const;
305 // specified opener, starting at |start_index|.
307 int start_index) const;
  /external/chromium/chrome/browser/history/
visit_database.cc 498 size_t start_index = 0, end_index = 0; local
500 start_index = end_index;
508 for (size_t j = start_index; j < end_index; j++) {
509 if (j != start_index)
  /external/llvm/test/Scripts/
coff-dump.py 479 start_index = entry[1]
488 start_index = read_value(start_index)
492 write("%d = " % (index + start_index))
  /external/chromium/chrome/browser/importer/
mork_reader.h 128 size_t start_index,
138 size_t start_index,
mork_reader.cc 171 size_t start_index,
180 size_t idx = start_index;
230 start_index = 0;
244 size_t start_index,
258 size_t idx = start_index;
411 start_index = 0;
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view_gtk_unittest.cc 102 if (attr->start_index <= location) {
105 retval.length_ = attr->start_index - location;
  /external/chromium/chrome/browser/resources/
about_stats.html 201 var start_index = row.rowIndex + 1;
210 for (var i = start_index; i < table.rows.length; i++)
  /external/chromium/chrome/browser/ui/
browser_navigator.cc 98 int start_index = std::max(0, params->browser->active_index()); local
101 int tab_index = (start_index + i) % tab_count;

Completed in 684 milliseconds

1 2 3