OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:default_match_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/autocomplete/
autocomplete_result.cc
86
default_match_
= end();
141
default_match_
= end();
194
default_match_
= matches_.begin();
196
if (
default_match_
!= matches_.end()) {
198
default_match_
->fill_into_edit + ASCIIToUTF16(", provider=") +
199
((
default_match_
->provider != NULL) ?
200
ASCIIToUTF16(
default_match_
->provider->GetName()) : base::string16()) +
202
DCHECK(
default_match_
->allowed_to_be_default_match) << debug_info;
205
if (AutocompleteMatch::IsSearchType(
default_match_
->type)) {
213
alternate_nav_url_ = (
default_match_
== matches_.end())
[
all
...]
autocomplete_result.h
101
const_iterator default_match() const { return
default_match_
; }
174
// SortAndCull() has been invoked, and preserves
default_match_
.
190
const_iterator
default_match_
;
member in class:AutocompleteResult
/external/chromium/chrome/browser/autocomplete/
autocomplete.cc
569
default_match_
= end();
581
default_match_
= (rhs.
default_match_
== rhs.end()) ?
582
end() : (begin() + (rhs.
default_match_
- rhs.begin()));
628
default_match_
= end();
633
DCHECK(
default_match_
!= end());
637
default_match_
- begin();
641
default_match_
= begin() + default_offset;
658
default_match_
= begin();
664
(
default_match_
!= end()) &
[
all
...]
autocomplete.h
514
// SortAndCull() has been invoked, and preserves
default_match_
.
541
const_iterator default_match() const { return
default_match_
; }
576
const_iterator
default_match_
;
member in class:AutocompleteResult
[
all
...]
Completed in 286 milliseconds