/external/chromium/chrome/browser/autocomplete/ |
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); 149 // Update the field with |display_text| and highlight the host and scheme (if 151 void SetText(const string16& display_text); 155 void SetTextInternal(const string16& display_text); 157 // Update the field with |display_text| and set the selection. 158 void SetTextAndSelectedRange(const string16& display_text, 172 // Calculates text attributes according to |display_text| and applies them 174 void ApplyTextAttributes(const string16& display_text, [all...] |
autocomplete_edit_view_views.cc | 359 const string16& display_text, 362 SetWindowTextAndCaretPos(display_text, display_text.length()); 442 const string16& display_text, 447 SetWindowTextAndCaretPos(display_text, display_text.length()); 452 const string16& display_text, 454 if (display_text == GetText()) 456 ui::Range range(display_text.size(), user_text_length); 457 SetTextAndSelectedRange(display_text, range) [all...] |
autocomplete_edit_view.h | 83 const string16& display_text, 131 // |display_text| is the new text to show; |save_original_selection| is true 134 virtual void OnTemporaryTextMaybeChanged(const string16& display_text, 138 // |display_text| is the new text to show; |user_text_length| is the length of 142 const string16& display_text, size_t user_text_length) = 0;
|
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...] |
autocomplete_edit_unittest.cc | 34 const string16& display_text, 48 virtual void OnTemporaryTextMaybeChanged(const string16& display_text, 51 const string16& display_text, size_t user_text_length) {
|
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;
|
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/ |
omnibox_view_mac.h | 53 const string16& display_text, 57 const string16& display_text, size_t user_text_length) OVERRIDE; 131 // Update the field with |display_text| and highlight the host and scheme (if 133 void SetText(const string16& display_text); 137 void SetTextInternal(const string16& display_text); 139 // Update the field with |display_text| and set the selection. 140 void SetTextAndSelectedRange(const string16& display_text, 148 // Calculates text attributes according to |display_text| and applies them 150 void ApplyTextAttributes(const string16& display_text,
|
omnibox_view_mac.mm | 370 void OmniboxViewMac::SetText(const string16& display_text) { 371 SetTextInternal(display_text); 374 void OmniboxViewMac::SetTextInternal(const string16& display_text) { 375 NSString* ss = base::SysUTF16ToNSString(display_text); 379 ApplyTextAttributes(display_text, as); 399 void OmniboxViewMac::SetTextAndSelectedRange(const string16& display_text, 401 SetText(display_text); 425 void OmniboxViewMac::ApplyTextAttributes(const string16& display_text, 450 display_text, &scheme, &host); 451 bool grey_out_url = display_text.substr(scheme.begin, scheme.len) = [all...] |
/external/chromium/chrome/browser/ui/gtk/infobars/ |
link_infobar_gtk.cc | 21 string16 display_text = delegate->GetMessageTextWithOffset(&link_offset); local 23 AddLabelWithInlineLink(display_text, link_text, link_offset,
|
infobar_gtk.h | 99 // Adds |display_text| to the infobar. If |link_text| is not empty, it is 100 // rendered as a hyperlink and inserted into |display_text| at |link_offset|, 103 void AddLabelWithInlineLink(const string16& display_text,
|
infobar_gtk.cc | 162 void InfoBar::AddLabelWithInlineLink(const string16& display_text, 184 UTF16ToUTF8(display_text.substr(0, link_offset)).c_str()); 186 UTF16ToUTF8(display_text.substr(link_offset)).c_str());
|
/external/chromium_org/chrome/browser/ui/gtk/infobars/ |
alternate_nav_infobar_gtk.cc | 33 string16 display_text = GetDelegate()->GetMessageTextWithOffset(&link_offset); local 35 AddLabelWithInlineLink(display_text, link_text, link_offset,
|
infobar_gtk.h | 105 // Adds |display_text| to the infobar. If |link_text| is not empty, it is 106 // rendered as a hyperlink and inserted into |display_text| at |link_offset|, 109 void AddLabelWithInlineLink(const string16& display_text,
|
infobar_gtk.cc | 217 void InfoBarGtk::AddLabelWithInlineLink(const string16& display_text, 237 UTF16ToUTF8(display_text.substr(0, link_offset))); 239 UTF16ToUTF8(display_text.substr(link_offset)));
|
/developers/samples/android/media/BasicMediaRouter/BasicMediaRouter/src/main/res/layout/ |
display.xml | 10 android:id="@+id/display_text"
|
/external/chromium_org/ppapi/examples/audio_input/ |
audio_input.html | 89 function UseDevice(display_text, command) { 91 in_use_device.innerText = display_text;
|
/external/chromium_org/ppapi/examples/video_capture/ |
video_capture.html | 91 function UseDevice(display_text, command) { 93 in_use_device.innerText = display_text;
|
/external/chromium_org/chrome/browser/ui/omnibox/ |
omnibox_view.cc | 111 const string16& display_text, 115 SetWindowTextAndCaretPos(display_text, display_text.length(), update_popup,
|
omnibox_view.h | 106 const string16& display_text, 162 // |display_text| is the new text to show; |save_original_selection| is true 166 virtual void OnTemporaryTextMaybeChanged(const string16& display_text, 171 // |display_text| is the new text to show; |user_text_length| is the length of 175 const string16& display_text, size_t user_text_length) = 0;
|
omnibox_edit_unittest.cc | 35 const string16& display_text, 51 const string16& display_text, 55 const string16& display_text, size_t user_text_length) OVERRIDE {
|
/developers/samples/android/media/BasicMediaRouter/BasicMediaRouter/src/main/java/com/example/android/media/basicmediarouter/ |
SamplePresentation.java | 57 mText = (TextView) findViewById(R.id.display_text);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
AppInterface.java | 48 DISPLAY_TEXT(0x21),
|
CatCmdMessage.java | 60 case DISPLAY_TEXT:
|
/external/chromium_org/chrome/browser/ui/autofill/ |
autofill_dialog_types.cc | 20 DialogNotification::DialogNotification(Type type, const string16& display_text) 22 display_text_(display_text),
|
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
autofill_notification_container.mm | 80 base::SysUTF16ToNSString(notification.display_text())];
|