Home | History | Annotate | Download | only in autocomplete

Lines Matching defs:keyword

55   // status of any keyword- or hint-related state.
93 const string16& keyword,
99 const string16 keyword;
256 const string16& keyword);
260 // Accessors for keyword-related state (see comments on keyword_ and
262 const string16& keyword() const { return keyword_; }
265 // Accepts the current keyword hint as a keyword. It always returns true for
269 // Clears the current keyword. |visible_text| is the (non-keyword) text
312 // |keyword| is the keyword to show a hint for if |is_keyword_hint| is true,
313 // or the currently selected keyword if |is_keyword_hint| is false (see
318 const string16& keyword,
325 // keyword ui state, even if the text matches a keyword exactly. This value
382 // Returns true if a keyword is selected.
387 // two are different if a keyword is selected.
421 // Accepts current keyword if the user only typed a space at the end of
423 // Returns true if the current keyword is accepted.
429 // other factors into account, e.g. if the view is ready to change the keyword
437 // keyword.
519 // The keyword associated with the current match. The user may have an actual
520 // selected keyword, or just some input text that looks like a keyword (so we
521 // can show a hint to press <tab>). This is the keyword in either case;
525 // True if the keyword associated with this match is merely a hint, i.e. the
526 // user hasn't actually selected a keyword yet. When this is true, we can use
544 // an exact keyword match. If it's true then keyword mode will be triggered
545 // automatically if the input is "<keyword> <search string>". We only allow
547 // 1.A single space character is added at the end of a keyword, such as:
548 // (assume "foo" is a keyword, | is the input caret)
551 // 2.A single space character is inserted after a keyword when the caret is
555 // It has no effect if a keyword is already selected.