HomeSort by relevance Sort by last modified time
    Searched refs:tooltip_text (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/ui/views/controls/
progress_bar_unittest.cc 18 base::string16 tooltip_text = base::ASCIIToUTF16("My progress"); local
19 bar.SetTooltipText(tooltip_text);
21 EXPECT_EQ(tooltip_text, tooltip);
progress_bar.h 38 void SetTooltipText(const base::string16& tooltip_text);
styled_label_unittest.cc 339 const std::string tooltip_text("this should have a tooltip,");
345 text.size() + tooltip_text.size() + normal_text.size();
347 InitStyledLabel(text + tooltip_text + normal_text + link_text);
351 gfx::Range(tooltip_start, tooltip_start + tooltip_text.size()),
358 text + tooltip_text.substr(0, tooltip_text.size() - 3)));
label.h 100 void SetTooltipText(const base::string16& tooltip_text);
  /external/chromium_org/ui/app_list/
search_result.cc 15 const base::string16& tooltip_text)
19 tooltip_text(tooltip_text) {}
22 const base::string16& tooltip_text)
23 : tooltip_text(tooltip_text),
search_result.h 65 const base::string16& tooltip_text);
67 const base::string16& tooltip_text);
74 base::string16 tooltip_text; member in struct:app_list::SearchResult::Action
  /external/chromium_org/ui/views/corewm/
tooltip_controller_test_helper.h 54 void set_tooltip_text(base::string16 tooltip_text) {
55 tooltip_text_ = tooltip_text;
tooltip.h 30 const base::string16& tooltip_text,
tooltip_win.h 41 const base::string16& tooltip_text,
tooltip_aura.h 53 const base::string16& tooltip_text,
tooltip_controller.cc 271 base::string16 tooltip_text; local
273 tooltip_text = aura::client::GetTooltipText(tooltip_window_);
279 tooltip_text == tooltip_text_at_mouse_press_) {
294 // TooltipTimerFired(), the tooltip_text may not have changed but we still
298 if (tooltip_text_ != tooltip_text || !tooltip_->IsVisible() || ids_differ) {
300 tooltip_text_ = tooltip_text;
tooltip_win.cc 99 const base::string16& tooltip_text,
113 base::string16 adjusted_text(tooltip_text);
tooltip_controller_unittest.cc 504 const base::string16 tooltip_text(ASCIIToUTF16("1"));
508 view_->set_tooltip_text(tooltip_text);
557 const base::string16& tooltip_text() const { return tooltip_text_; } function in class:views::corewm::test::__anon793::TestTooltip
561 const base::string16& tooltip_text,
563 tooltip_text_ = tooltip_text;
633 base::string16 tooltip_text(ASCIIToUTF16(" \nx "));
634 aura::client::SetTooltipText(window.get(), &tooltip_text);
637 EXPECT_EQ(ASCIIToUTF16("x"), test_tooltip_->tooltip_text());
646 base::string16 tooltip_text(ASCIIToUTF16("Tooltip Text"));
647 aura::client::SetTooltipText(window.get(), &tooltip_text);
    [all...]
tooltip_aura.cc 184 const base::string16& tooltip_text,
189 base::string16 trimmed_text(tooltip_text);
  /external/chromium_org/ash/system/tray/
throbber_view.cc 31 void SystemTrayThrobber::SetTooltipText(const base::string16& tooltip_text) {
32 tooltip_text_ = tooltip_text;
91 void ThrobberView::SetTooltipText(const base::string16& tooltip_text) {
92 tooltip_text_ = tooltip_text;
93 throbber_->SetTooltipText(tooltip_text);
throbber_view.h 20 void SetTooltipText(const base::string16& tooltip_text);
41 void SetTooltipText(const base::string16& tooltip_text);
  /external/chromium_org/ui/wm/public/
tooltip_client.h 43 base::string16* tooltip_text);
tooltip_client.cc 34 void SetTooltipText(Window* window, base::string16* tooltip_text) {
35 window->SetProperty(kTooltipTextKey, tooltip_text);
  /external/chromium_org/ui/views/controls/button/
button.cc 33 void Button::SetTooltipText(const base::string16& tooltip_text) {
34 tooltip_text_ = tooltip_text;
button.h 51 void SetTooltipText(const base::string16& tooltip_text);
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_types.h 113 void set_tooltip_text(const base::string16& tooltip_text) {
114 tooltip_text_ = tooltip_text;
116 const base::string16& tooltip_text() const { return tooltip_text_; } function in class:autofill::DialogNotification
  /external/chromium_org/ui/app_list/views/
search_result_actions_view.cc 68 button->SetAccessibleName(action.tooltip_text);
74 button->SetTooltipText(action.tooltip_text);
82 button->SetTooltipText(action.tooltip_text);
  /external/chromium_org/chrome/browser/ui/views/extensions/
media_gallery_checkbox_view.cc 50 base::string16 tooltip_text = pref_info.GetGalleryTooltip(); local
51 checkbox_->SetTooltipText(tooltip_text);
75 secondary_text_->SetTooltipText(tooltip_text);
  /external/chromium_org/content/browser/frame_host/
render_widget_host_view_child_frame.h 81 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE;
render_widget_host_view_guest.h 88 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE;

Completed in 255 milliseconds

1 2