Searched defs:match_index (Results 1 - 5 of 5) 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
/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/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 2764 milliseconds