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

/external/chromium/chrome/browser/autocomplete/
H A Dhistory_quick_provider.cc150 size_t inline_autocomplete_offset = local
155 UnescapeRule::SPACES, NULL, NULL, &inline_autocomplete_offset));
157 match.inline_autocomplete_offset = inline_autocomplete_offset;
158 DCHECK((match.inline_autocomplete_offset == string16::npos) ||
159 (match.inline_autocomplete_offset <= match.fill_into_edit.length()));
H A Dhistory_url_provider.cc783 size_t inline_autocomplete_offset = local
794 &inline_autocomplete_offset));
796 match.inline_autocomplete_offset = inline_autocomplete_offset;
797 DCHECK((match.inline_autocomplete_offset == string16::npos) ||
798 (match.inline_autocomplete_offset <= match.fill_into_edit.length()));
804 (inline_autocomplete_offset != string16::npos) &&
805 (inline_autocomplete_offset != match_start)) {
806 DCHECK(inline_autocomplete_offset > match_start);
808 inline_autocomplete_offset
[all...]
H A Dautocomplete_match.cc15 inline_autocomplete_offset(string16::npos),
31 inline_autocomplete_offset(string16::npos),
H A Dautocomplete_match.h153 size_t inline_autocomplete_offset; member in struct:AutocompleteMatch
H A Dautocomplete_popup_model.cc107 if ((match.inline_autocomplete_offset != string16::npos) &&
108 (match.inline_autocomplete_offset < match.fill_into_edit.length())) {
110 match.fill_into_edit.substr(match.inline_autocomplete_offset);
H A Dhistory_url_provider_unittest.cc215 EXPECT_EQ(expected_offset, matches_[0].inline_autocomplete_offset);
418 EXPECT_EQ(input_1.length(), matches_.front().inline_autocomplete_offset);
430 EXPECT_EQ(input_2.length(), matches_.front().inline_autocomplete_offset);
H A Dextension_app_provider.cc70 match.inline_autocomplete_offset = string16::npos;
H A Dautocomplete_edit.cc839 if ((match->inline_autocomplete_offset != string16::npos) &&
840 (match->inline_autocomplete_offset <
843 match->fill_into_edit.substr(match->inline_autocomplete_offset);
H A Dkeyword_provider.cc416 // If we wanted to set |result.inline_autocomplete_offset| correctly, we'd
421 result.inline_autocomplete_offset = string16::npos;
H A Dsearch_provider.cc820 match.inline_autocomplete_offset = search_start + input_text.length();

Completed in 100 milliseconds