/external/chromium/chrome/browser/instant/ |
instant_loader.cc | 651 (new_user_text.empty() || user_text_ == new_user_text))) { 654 // when we get the suggest text we set user_text_ to the new suggest text, 661 user_text_ = new_user_text; 675 frame_load_observer_->set_text(user_text_); 681 int text_length = static_cast<int>(user_text_.size()); 683 user_text_, verbatim, text_length, text_length); 687 string16 user_text_lower = l10n_util::ToLower(user_text_); 693 complete_suggested_text_.substr(user_text_.size()); 715 user_text_, verbatim, 0, 0); 719 user_text_, [all...] |
instant_loader.h | 103 const string16& user_text() const { return user_text_; } 112 // Invoked when the page wants to update the suggested text. If |user_text_| 179 string16 user_text_; member in class:InstantLoader
|
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_edit.cc | 115 return State(user_input_in_progress_, user_text_, keyword_, is_keyword_hint_); 391 user_text_, GetDesiredTLD(), 718 DisplayTextFromUserText(user_text_ + inline_autocomplete_text_), 719 DisplayTextFromUserText(user_text_).length())) 770 const string16 old_user_text = user_text_; 793 ShouldAllowExactKeywordMatch(old_user_text, user_text_, selection_start); 801 no_selection && selection_start == user_text_.length() && 802 MaybeAcceptKeywordBySpace(old_user_text, user_text_)); [all...] |
autocomplete_edit.h | 184 // Sets the user_text_ to |text|. Only the View should call this. 379 // Called whenever user_text_ should change. 463 string16 user_text_; member in class:AutocompleteEditModel 484 // appended to the user_text_ and displayed selected (at least initially). 497 // the user_text_ is still "goog", and "google.com" is "temporary text".
|