Searched refs:match_index (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/base/i18n/ |
D | string_search.cc | 40 const string16& in_this, size_t* match_index, size_t* match_length) { in Search() argument 53 if (match_index) in Search() 54 *match_index = index; in Search() 64 if (match_index) in Search() 65 *match_index = static_cast<size_t>(index); in Search() 73 size_t* match_index, in StringSearchIgnoringCaseAndAccents() argument 76 in_this, match_index, match_length); in StringSearchIgnoringCaseAndAccents()
|
D | string_search.h | 26 size_t* match_index, 42 size_t* match_index,
|
/external/chromium_org/chrome/browser/autocomplete/ |
D | contact_provider_chromeos.cc | 44 size_t match_index = 0; in WordIsNamePrefix() local 47 name_to_search, &match_index, &match_length) || (match_index != 0)) in WordIsNamePrefix()
|
D | history_url_provider_unittest.cc | 898 for (size_t match_index = 0; match_index < match.contents_class.size(); in TEST_F() local 899 ++match_index) { in TEST_F() 900 EXPECT_EQ(test_cases[i].offsets[match_index], in TEST_F() 901 match.contents_class[match_index].offset); in TEST_F() 903 (match_index == test_cases[i].match_classification_index ? in TEST_F() 905 match.contents_class[match_index].style); in TEST_F()
|
/external/chromium_org/third_party/pexpect/ |
D | pexpect.py | 405 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 1487 self.match_index = None [all …]
|
/external/chromium_org/chrome/browser/history/ |
D | history_types.cc | 236 size_t match_index = i->second[match]; in AdjustResultMap() local 237 if (match_index >= begin && match_index <= end) in AdjustResultMap()
|
/external/chromium/chrome/browser/history/ |
D | history_types.cc | 290 size_t match_index = i->second[match]; in AdjustResultMap() local 291 if (match_index >= begin && match_index <= end) in AdjustResultMap()
|
/external/chromium_org/chrome/browser/ui/panels/ |
D | panel.cc | 893 size_t match_index; in FormatTitleForDisplay() local 894 while ((match_index = title->find(L'\n', current_index)) != in FormatTitleForDisplay() 896 title->replace(match_index, 1, base::string16()); in FormatTitleForDisplay() 897 current_index = match_index; in FormatTitleForDisplay()
|
/external/chromium_org/chrome/browser/ui/ |
D | browser.cc | 587 size_t match_index; in FormatTitleForDisplay() local 588 while ((match_index = title->find(L'\n', current_index)) != in FormatTitleForDisplay() 590 title->replace(match_index, 1, base::string16()); in FormatTitleForDisplay() 591 current_index = match_index; in FormatTitleForDisplay()
|
/external/chromium/chrome/browser/ui/ |
D | browser.cc | 861 size_t match_index; in FormatTitleForDisplay() local 862 while ((match_index = title->find(L'\n', current_index)) != string16::npos) { in FormatTitleForDisplay() 863 title->replace(match_index, 1, string16()); in FormatTitleForDisplay() 864 current_index = match_index; in FormatTitleForDisplay()
|