/external/chromium/chrome/browser/autocomplete/ |
D | autocomplete_edit_view_mac.h | 58 const string16& display_text, 76 virtual void OnTemporaryTextMaybeChanged(const string16& display_text, 79 const string16& display_text, size_t user_text_length); 151 void SetText(const string16& display_text); 155 void SetTextInternal(const string16& display_text); 158 void SetTextAndSelectedRange(const string16& display_text, 174 void ApplyTextAttributes(const string16& display_text,
|
D | autocomplete_edit_view_views.cc | 359 const string16& display_text, in SetUserText() argument 362 SetWindowTextAndCaretPos(display_text, display_text.length()); in SetUserText() 442 const string16& display_text, in OnTemporaryTextMaybeChanged() argument 447 SetWindowTextAndCaretPos(display_text, display_text.length()); in OnTemporaryTextMaybeChanged() 452 const string16& display_text, in OnInlineAutocompleteTextMaybeChanged() argument 454 if (display_text == GetText()) in OnInlineAutocompleteTextMaybeChanged() 456 ui::Range range(display_text.size(), user_text_length); in OnInlineAutocompleteTextMaybeChanged() 457 SetTextAndSelectedRange(display_text, range); in OnInlineAutocompleteTextMaybeChanged()
|
D | autocomplete_edit_view.h | 83 const string16& display_text, 134 virtual void OnTemporaryTextMaybeChanged(const string16& display_text, 142 const string16& display_text, size_t user_text_length) = 0;
|
D | autocomplete_edit_unittest.cc | 34 const string16& display_text, in SetUserText() argument 48 virtual void OnTemporaryTextMaybeChanged(const string16& display_text, in OnTemporaryTextMaybeChanged() argument 51 const string16& display_text, size_t user_text_length) { in OnInlineAutocompleteTextMaybeChanged() argument
|
D | autocomplete_edit_view_views.h | 93 const string16& display_text, 108 const string16& display_text, 111 const string16& display_text, size_t user_text_length) OVERRIDE;
|
D | autocomplete_edit_view_mac.mm | 328 const string16& display_text, 333 SetText(display_text); 457 void AutocompleteEditViewMac::SetText(const string16& display_text) { 460 SetTextInternal(display_text); 464 const string16& display_text) { 465 NSString* ss = base::SysUTF16ToNSString(display_text); 469 ApplyTextAttributes(display_text, as); 491 const string16& display_text, const NSRange range) { 492 SetText(display_text); 538 const string16& display_text, NSMutableAttributedString* as) { [all …]
|
D | autocomplete_edit_view_gtk.h | 113 const string16& display_text, 133 virtual void OnTemporaryTextMaybeChanged(const string16& display_text, 136 const string16& display_text, size_t user_text_length);
|
D | autocomplete_edit_view_win.h | 108 const string16& display_text, 128 virtual void OnTemporaryTextMaybeChanged(const string16& display_text, 131 const string16& display_text, size_t user_text_length);
|
D | autocomplete_edit_view_gtk.cc | 546 const string16& display_text, in SetUserText() argument 550 SetWindowTextAndCaretPos(display_text, display_text.length()); in SetUserText() 628 const string16& display_text, in OnTemporaryTextMaybeChanged() argument 634 SetWindowTextAndCaretPos(display_text, display_text.length()); in OnTemporaryTextMaybeChanged() 640 const string16& display_text, in OnInlineAutocompleteTextMaybeChanged() argument 642 if (display_text == GetText()) in OnInlineAutocompleteTextMaybeChanged() 646 CharRange range(display_text.size(), user_text_length); in OnInlineAutocompleteTextMaybeChanged() 647 SetTextAndSelectedRange(display_text, range); in OnInlineAutocompleteTextMaybeChanged()
|
D | autocomplete_edit_view_win.cc | 648 const string16& display_text, in SetUserText() argument 653 SetWindowTextAndCaretPos(display_text, display_text.length()); in SetUserText() 808 const string16& display_text, in OnTemporaryTextMaybeChanged() argument 821 SetWindowTextAndCaretPos(display_text, display_text.length()); in OnTemporaryTextMaybeChanged() 826 const string16& display_text, in OnInlineAutocompleteTextMaybeChanged() argument 833 if (display_text == GetText()) in OnInlineAutocompleteTextMaybeChanged() 837 SetWindowText(display_text.c_str()); in OnInlineAutocompleteTextMaybeChanged() 840 SetSelection(static_cast<LONG>(display_text.length()), in OnInlineAutocompleteTextMaybeChanged()
|
/external/chromium/chrome/browser/ui/gtk/infobars/ |
D | link_infobar_gtk.cc | 21 string16 display_text = delegate->GetMessageTextWithOffset(&link_offset); in LinkInfoBarGtk() local 23 AddLabelWithInlineLink(display_text, link_text, link_offset, in LinkInfoBarGtk()
|
D | infobar_gtk.cc | 162 void InfoBar::AddLabelWithInlineLink(const string16& display_text, in AddLabelWithInlineLink() argument 184 UTF16ToUTF8(display_text.substr(0, link_offset)).c_str()); in AddLabelWithInlineLink() 186 UTF16ToUTF8(display_text.substr(link_offset)).c_str()); in AddLabelWithInlineLink()
|
D | infobar_gtk.h | 103 void AddLabelWithInlineLink(const string16& display_text,
|
/external/chromium/chrome/browser/renderer_host/ |
D | render_widget_host_view_mac.mm | 584 std::wstring display_text = tooltip_text_; 586 display_text = tooltip_text_.substr(0, kMaxTooltipLength); 588 NSString* tooltip_nsstring = base::SysWideToNSString(display_text);
|