HomeSort by relevance Sort by last modified time
    Searched defs:kNoMatch (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_popup_model.h 59 // valid lines (to enable hover) or kNoMatch (to disable hover).
75 // the selected line should not be kNoMatch.
120 static const size_t kNoMatch;
128 // this will be kNoMatch, even if the cursor is over the popup contents.
131 // The currently selected line. This is kNoMatch when nothing is selected,
omnibox_popup_model.cc 28 const size_t OmniboxPopupModel::kNoMatch = static_cast<size_t>(-1);
35 hovered_line_(kNoMatch),
36 selected_line_(kNoMatch),
100 const bool is_disabling = (line == kNoMatch);
108 if ((hovered_line_ != kNoMatch) && (hovered_line_ != selected_line_))
151 CHECK(selected_line_ != kNoMatch);
195 SetHoveredLine(kNoMatch);
205 DCHECK_NE(kNoMatch, selected_line_);
218 if (selected_line_ == kNoMatch)
269 kNoMatch : static_cast<size_t>(result.default_match() - result.begin())
    [all...]

Completed in 73 milliseconds