OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ShouldHideTopMatch
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/components/omnibox/
autocomplete_result.h
123
bool
ShouldHideTopMatch
() const;
autocomplete_result_unittest.cc
733
TEST_F(AutocompleteResultTest,
ShouldHideTopMatch
) {
742
EXPECT_TRUE(result.
ShouldHideTopMatch
());
752
EXPECT_FALSE(result.
ShouldHideTopMatch
());
762
EXPECT_FALSE(result.
ShouldHideTopMatch
());
778
EXPECT_TRUE(result.
ShouldHideTopMatch
());
784
EXPECT_TRUE(result.
ShouldHideTopMatch
());
791
EXPECT_FALSE(result.
ShouldHideTopMatch
());
795
// This test config is identical to
ShouldHideTopMatch
test ("Case 1") except
804
EXPECT_FALSE(result.
ShouldHideTopMatch
());
[
all
...]
autocomplete_result.cc
329
bool AutocompleteResult::
ShouldHideTopMatch
() const {
/external/chromium_org/chrome/browser/ui/omnibox/
omnibox_controller.cc
62
if ((result.
ShouldHideTopMatch
() ||
/external/chromium_org/chrome/browser/metrics/
omnibox_metrics_provider.cc
152
log.result.
ShouldHideTopMatch
());
/external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_popup_contents_view.cc
148
const size_t hidden_matches = model_->result().
ShouldHideTopMatch
() ? 1 : 0;
381
for (size_t i = model_->result().
ShouldHideTopMatch
() ? 1 : 0;
Completed in 272 milliseconds