Searched refs:tooltip_text (Results 1 - 25 of 42) sorted by relevance

12

/external/chromium_org/ui/views/controls/
H A Dprogress_bar_unittest.cc18 base::string16 tooltip_text = base::ASCIIToUTF16("My progress"); local
19 bar.SetTooltipText(tooltip_text);
21 EXPECT_EQ(tooltip_text, tooltip);
H A Dprogress_bar.h38 void SetTooltipText(const base::string16& tooltip_text);
H A Dstyled_label_unittest.cc339 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)));
H A Dlabel.h100 void SetTooltipText(const base::string16& tooltip_text);
H A Dprogress_bar.cc170 void ProgressBar::SetTooltipText(const base::string16& tooltip_text) {
171 tooltip_text_ = tooltip_text;
/external/chromium_org/ui/app_list/
H A Dsearch_result.cc15 const base::string16& tooltip_text)
19 tooltip_text(tooltip_text) {}
22 const base::string16& tooltip_text)
23 : tooltip_text(tooltip_text),
12 Action(const gfx::ImageSkia& base_image, const gfx::ImageSkia& hover_image, const gfx::ImageSkia& pressed_image, const base::string16& tooltip_text) argument
21 Action(const base::string16& label_text, const base::string16& tooltip_text) argument
H A Dsearch_result.h65 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/ash/system/tray/
H A Dthrobber_view.cc31 void SystemTrayThrobber::SetTooltipText(const base::string16& tooltip_text) { argument
32 tooltip_text_ = tooltip_text;
91 void ThrobberView::SetTooltipText(const base::string16& tooltip_text) { argument
92 tooltip_text_ = tooltip_text;
93 throbber_->SetTooltipText(tooltip_text);
H A Dthrobber_view.h20 void SetTooltipText(const base::string16& tooltip_text);
41 void SetTooltipText(const base::string16& tooltip_text);
/external/chromium_org/ui/views/corewm/
H A Dtooltip_controller_test_helper.h54 void set_tooltip_text(base::string16 tooltip_text) { argument
55 tooltip_text_ = tooltip_text;
H A Dtooltip.h30 const base::string16& tooltip_text,
H A Dtooltip_win.h41 const base::string16& tooltip_text,
H A Dtooltip_aura.h53 const base::string16& tooltip_text,
H A Dtooltip_controller.cc271 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;
H A Dtooltip_win.cc99 const base::string16& tooltip_text,
113 base::string16 adjusted_text(tooltip_text);
98 SetText(aura::Window* window, const base::string16& tooltip_text, const gfx::Point& location) argument
H A Dtooltip_controller_unittest.cc504 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::__anon17088::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...]
H A Dtooltip_aura.cc184 const base::string16& tooltip_text,
189 base::string16 trimmed_text(tooltip_text);
183 SetText(aura::Window* window, const base::string16& tooltip_text, const gfx::Point& location) argument
/external/chromium_org/ui/views/controls/button/
H A Dbutton.cc33 void Button::SetTooltipText(const base::string16& tooltip_text) { argument
34 tooltip_text_ = tooltip_text;
H A Dbutton.h51 void SetTooltipText(const base::string16& tooltip_text);
/external/chromium_org/ui/wm/public/
H A Dtooltip_client.cc34 void SetTooltipText(Window* window, base::string16* tooltip_text) { argument
35 window->SetProperty(kTooltipTextKey, tooltip_text);
H A Dtooltip_client.h43 base::string16* tooltip_text);
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_types.h113 void set_tooltip_text(const base::string16& tooltip_text) { argument
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/
H A Dsearch_result_actions_view.cc68 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/
H A Dmedia_gallery_checkbox_view.cc50 base::string16 tooltip_text = pref_info.GetGalleryTooltip(); local
51 checkbox_->SetTooltipText(tooltip_text);
75 secondary_text_->SetTooltipText(tooltip_text);
/external/chromium_org/chrome/browser/ui/views/panels/
H A Dpanel_frame_view.cc268 base::string16 tooltip_text = local
270 close_button_->SetTooltipText(tooltip_text);
280 tooltip_text = l10n_util::GetStringUTF16(IDS_PANEL_MINIMIZE_TOOLTIP);
281 minimize_button_->SetTooltipText(tooltip_text);
295 tooltip_text = l10n_util::GetStringUTF16(IDS_PANEL_RESTORE_TOOLTIP);
296 restore_button_->SetTooltipText(tooltip_text);

Completed in 253 milliseconds

12