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

123

/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Derror.py43 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
H A Dtokens.py44 start_index: The character index in the line where this token starts.
72 self.start_index = None
/external/chromium/chrome/browser/
H A Dcrash_upload_list_win.cc68 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/
H A Dsys_info_chromeos.cc92 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/
H A DphLlcNfc_Timer.c377 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]
710 uint8_t start_index = 0; local
[all...]
/external/opencv/cv/src/
H A Dcvapprox.cpp551 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 >
[all...]
/external/bluetooth/bluedroid/bta/include/
H A Dbta_gattc_co.h98 UINT16 start_index, UINT16 conn_id);
/external/chromium/chrome/browser/importer/
H A Dmork_reader.h128 size_t start_index,
138 size_t start_index,
H A Dmork_reader.cc171 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;
170 ParseMap(const std::string& first_line, size_t start_index, StringMap* map) argument
243 ParseTable(const std::string& first_line, size_t start_index, const IndexMap* column_map) argument
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dtokenutil.py266 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
H A Dindentation.py170 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
[all...]
/external/v8/src/
H A Dstring-search.h130 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) {
299 BoyerMooreSearch( StringSearch<PatternChar, SubjectChar>* search, Vector<const SubjectChar> subject, int start_index) argument
422 BoyerMooreHorspoolSearch( StringSearch<PatternChar, SubjectChar>* search, Vector<const SubjectChar> subject, int start_index) argument
562 SearchString(Isolate* isolate, Vector<const SubjectChar> subject, Vector<const PatternChar> pattern, int start_index) argument
[all...]
H A Dregexp.js330 var start_index;
333 start_index = lastMatchInfo[CAPTURE0];
337 start_index = override[override.length - 2];
340 return SubString(subject, 0, start_index);
345 var start_index;
348 start_index = lastMatchInfo[CAPTURE1];
354 start_index = override[override.length - 2] + pattern.length;
356 return SubString(subject, start_index, subject.length);
H A Dregexp-macro-assembler.cc76 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);
74 StringCharacterPosition( String* subject, int start_index) argument
/external/aac/libSBRenc/src/
H A Denv_est.h120 int start_index; member in struct:__anon232
161 int start_index,
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
H A Dfilter.rb50 def memoize( rule, start_index, success )
51 super( rule, start_index, success ) if @state.backtracking > 1
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp594 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
[all...]
/external/chromium/chrome/browser/ui/views/bookmarks/
H A Dbookmark_menu_controller_views.cc59 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/llvm/test/Scripts/
H A Dcoff-dump.py479 start_index = entry[1]
488 start_index = read_value(start_index)
492 write("%d = " % (index + start_index))
/external/chromium/chrome/browser/tabs/
H A Dtab_strip_model.h291 // 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;
H A Dtab_strip_model.cc395 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) cons
394 GetIndexOfNextTabContentsOpenedBy( const NavigationController* opener, int start_index, bool use_group) const argument
[all...]
/external/chromium/chrome/browser/ui/views/extensions/
H A Dbrowser_action_overflow_menu_controller.cc23 int start_index)
28 start_index_(start_index),
34 for (size_t i = start_index; i < views_->size(); ++i) {
19 BrowserActionOverflowMenuController( BrowserActionsContainer* owner, views::MenuButton* menu_button, const std::vector<BrowserActionView*>& views, int start_index) argument
H A Dbrowser_action_overflow_menu_controller.h39 int start_index);
98 // won't show all items, just the one starting at |start_index| and above.
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_win.h288 STDMETHODIMP scrollSubstringTo(LONG start_index, argument
293 STDMETHODIMP scrollSubstringToPoint(LONG start_index, LONG end_index, argument
399 unsigned int start_index,
409 unsigned int start_index,
419 unsigned int start_index,
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/history/
H A Dvisit_database.cc498 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)

Completed in 475 milliseconds

123