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

1 2 3

  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
error.py 43 self.start_index = token.start_index
45 self.start_index = 0
48 self.start_index += self.position.start
64 return a.start_index - b.start_index
tokens.py 44 start_index: The character index in the line where this token starts.
72 self.start_index = None
  /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/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...]
  /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/bluetooth/bluedroid/bta/include/
bta_gattc_co.h 98 UINT16 start_index, UINT16 conn_id);
  /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-trace/trace-viewer/third_party/closure_linter/closure_linter/
tokenutil.py 266 if new_token.start_index is None:
268 new_token.start_index = token.start_index + len(token.string)
270 new_token.start_index = 0
274 iterator.start_index += len(new_token.string)
374 return token1.start_index - token2.start_index
indentation.py 170 Position(token.start_index, token.length)])
179 Position(token.start_index, token.length)])
370 start_index = token.start_index
372 start_index += self._start_index_offset[token.line_number]
375 hard_stops.add(start_index + 1)
378 hard_stops.add(start_index + 7)
381 hard_stops.add(start_index + 1)
384 hard_stops.add(start_index + len(token.string) + 1)
387 hard_stops.add(start_index + 2
    [all...]
  /external/bluetooth/bluedroid/btif/co/
bta_gattc_co.c 70 void bta_gattc_co_cache_load(BD_ADDR server_bda, UINT16 evt, UINT16 start_index, UINT16 conn_id)
  /external/v8/src/
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;
425 int start_index) {
437 int index = start_index; // No matches found prior to this index.
565 int start_index) {
    [all...]
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);
  /external/aac/libSBRenc/src/
env_est.h 120 int start_index; member in struct:__anon2202
161 int start_index,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
filter.rb 50 def memoize( rule, start_index, success )
51 super( rule, start_index, success ) if @state.backtracking > 1
  /frameworks/base/tools/orientationplot/
orientationplot.py 396 start_index = prefix_index + len(prefix)
397 delim_index = line.find(',', start_index)
399 return line[start_index:]
401 return line[start_index:delim_index]
415 start_index = prefix_index + len(prefix) + 1
416 delim_index = line.find(']', start_index)
421 while start_index < delim_index:
422 comma_index = line.find(', ', start_index, delim_index)
424 result.append(float(line[start_index:delim_index]))
426 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/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);
  /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/llvm/test/Scripts/
coff-dump.py 479 start_index = entry[1]
488 start_index = read_value(start_index)
492 write("%d = " % (index + start_index))
  /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.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/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,

Completed in 570 milliseconds

1 2 3