Searched refs:match_index (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/base/i18n/
H A Dstring_search.cc40 const string16& in_this, size_t* match_index, size_t* match_length) {
53 if (match_index)
54 *match_index = index;
64 if (match_index)
65 *match_index = static_cast<size_t>(index);
73 size_t* match_index,
76 in_this, match_index, match_length);
39 Search( const string16& in_this, size_t* match_index, size_t* match_length) argument
71 StringSearchIgnoringCaseAndAccents(const string16& find_this, const string16& in_this, size_t* match_index, size_t* match_length) argument
H A Dstring_search.h16 // Returns true if |in_this| contains |find_this|. If |match_index| or
26 size_t* match_index,
38 // Returns true if |in_this| contains |find_this|. If |match_index| or
42 size_t* match_index,
/external/lldb/examples/python/
H A Dmemory.py164 match_index = string.find(bytes, options.data)
165 while match_index != -1:
167 print >>result, '%#x: %#x + %u' % (start_addr + match_index, start_addr, match_index)
168 match_index = string.find(bytes, options.data, match_index + 1)
/external/chromium_org/components/enhanced_bookmarks/
H A Denhanced_bookmark_utils.cc30 size_t match_index; local
33 pattern16.Search(node->GetTitle(), &match_index, &match_length);
/external/chromium_org/components/history/core/browser/
H A Dhistory_types.cc148 size_t match_index = i->second[match]; local
149 if (match_index >= begin && match_index <= end)
/external/chromium_org/third_party/pexpect/
H A Dpexpect.py405 self.match_index = None
493 s.append('match_index: ' + str(self.match_index))
1451 self.match_index = index
1452 return self.match_index
1470 self.match_index = index
1471 return self.match_index
1474 self.match_index = None
1483 self.match_index = index
1484 return self.match_index
[all...]
/external/lldb/test/pexpect-2.4/
H A Dpexpect.py390 self.match_index = None
465 s.append('match_index: ' + str(self.match_index))
1377 self.match_index = index
1378 return self.match_index
1396 self.match_index = index
1397 return self.match_index
1400 self.match_index = None
1409 self.match_index = index
1410 return self.match_index
[all...]
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_url_provider_unittest.cc921 for (size_t match_index = 0; match_index < match.contents_class.size();
922 ++match_index) {
923 EXPECT_EQ(test_cases[i].offsets[match_index],
924 match.contents_class[match_index].offset);
926 (match_index == test_cases[i].match_classification_index ?
928 match.contents_class[match_index].style);
/external/chromium_org/chrome/browser/ui/panels/
H A Dpanel.cc903 size_t match_index; local
904 while ((match_index = title->find(L'\n', current_index)) !=
906 title->replace(match_index, 1, base::string16());
907 current_index = match_index;
/external/chromium_org/chrome/browser/ui/
H A Dbrowser.cc605 size_t match_index; local
606 while ((match_index = title->find(L'\n', current_index)) !=
608 title->replace(match_index, 1, base::string16());
609 current_index = match_index;

Completed in 4789 milliseconds