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

1 2 3 4 5

  /external/chromium_org/ui/views/corewm/
tooltip_aura_unittest.cc 24 base::string16 tooltip; local
32 int error_in_pixel_width = gfx::GetStringWidth(ASCIIToUTF16("tooltip"),
36 tooltip.clear();
39 for (; gfx::GetStringWidth(tooltip, font_list) <=
41 tooltip.append(ASCIIToUTF16("This is part of the tooltip"));
42 tooltip_len = tooltip.length();
43 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
47 EXPECT_EQ(tooltip_len + expect_lines - 1, tooltip.length());
50 tooltip.clear()
89 tooltip); local
    [all...]
tooltip_controller_test_helper.cc 58 base::string16* tooltip) const {
59 *tooltip = tooltip_text_;
tooltip_controller_test_helper.h 48 // Trivial View subclass that lets you set the tooltip text.
60 base::string16* tooltip) const OVERRIDE;
  /external/chromium_org/ui/views/controls/
progress_bar_unittest.cc 15 base::string16 tooltip = base::ASCIIToUTF16("Some text"); local
16 EXPECT_FALSE(bar.GetTooltipText(gfx::Point(), &tooltip));
17 EXPECT_EQ(base::string16(), tooltip); local
20 EXPECT_TRUE(bar.GetTooltipText(gfx::Point(), &tooltip));
21 EXPECT_EQ(tooltip_text, tooltip);
progress_bar.h 35 // Sets the tooltip text. Default behavior for a progress bar is to show no
36 // tooltip on mouse hover. Calling this lets you set a custom tooltip. To
42 base::string16* tooltip) const OVERRIDE;
60 // Tooltip text.
image_view.h 74 // Set / Get the tooltip text.
75 void SetTooltipText(const base::string16& tooltip);
89 base::string16* tooltip) const OVERRIDE;
119 // The current tooltip text.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Checkbox.js 30 * @param {string=} tooltip
32 WebInspector.Checkbox = function(label, className, tooltip)
38 if (tooltip)
39 this.element.title = tooltip;
  /external/chromium_org/third_party/polymer/components/core-tooltip/
core-tooltip.css 14 :host(:hover) .polymer-tooltip {
18 :host(:focus) .polymer-tooltip {
22 .polymer-tooltip:not(.show) {
26 .polymer-tooltip {
42 :host([large]) .polymer-tooltip {
48 .polymer-tooltip.noarrow::after {
52 .polymer-tooltip::after {
81 .polymer-tooltip.bottom::after {
87 .polymer-tooltip.left::after {
93 .polymer-tooltip.top::after
    [all...]
  /external/chromium_org/third_party/polymer/components-chromium/core-tooltip/
core-tooltip.css 14 :host(:hover) .polymer-tooltip {
18 :host(:focus) .polymer-tooltip {
22 .polymer-tooltip:not(.show) {
26 .polymer-tooltip {
42 :host([large]) .polymer-tooltip {
48 .polymer-tooltip.noarrow::after {
52 .polymer-tooltip::after {
81 .polymer-tooltip.bottom::after {
87 .polymer-tooltip.left::after {
93 .polymer-tooltip.top::after
    [all...]
  /external/chromium_org/ash/system/tray/
throbber_view.h 14 // A SmoothedThrobber with tooltip.
24 const gfx::Point& p, base::string16* tooltip) const OVERRIDE;
27 // The current tooltip text.
47 const gfx::Point& p, base::string16* tooltip) const OVERRIDE;
55 // The current tooltip text.
throbber_view.cc 36 base::string16* tooltip) const {
40 *tooltip = tooltip_text_;
73 base::string16* tooltip) const {
77 *tooltip = tooltip_text_;
  /external/chromium_org/chrome/browser/ui/content_settings/
content_setting_image_model.h 17 // This model provides data (icon ids and tooltip) for the content setting icons
28 // update its visibility, icon and tooltip.
48 void set_tooltip(const std::string& tooltip) { tooltip_ = tooltip; }
  /external/chromium_org/chrome/browser/signin/
easy_unlock_screenlock_state_handler.cc 228 base::string16 tooltip; local
230 tooltip = l10n_util::GetStringFUTF16(
233 tooltip = l10n_util::GetStringUTF16(
236 tooltip = l10n_util::GetStringUTF16(
241 icon_options.SetTooltip(tooltip, true /* autoshow */);
269 base::string16 tooltip;
271 tooltip = l10n_util::GetStringUTF16(resource_id);
273 tooltip = l10n_util::GetStringFUTF16(resource_id, device_name);
276 if (tooltip.empty())
279 icon_options->SetTooltip(tooltip, trial_run /* autoshow tooltip */)
    [all...]
screenlock_bridge.cc 71 result->Set("tooltip", tooltip_options);
89 const base::string16& tooltip,
91 tooltip_ = tooltip;
  /external/chromium_org/chrome/browser/ui/views/location_bar/
zoom_view.h 26 // Updates the image and its tooltip appropriately, hiding or showing the icon
34 base::string16* tooltip) const OVERRIDE;
bubble_icon_view.cc 27 base::string16* tooltip) const {
31 return views::ImageView::GetTooltipText(p, tooltip);
zoom_view.cc 48 base::string16* tooltip) const {
49 // Don't show tooltip if the zoom bubble is displayed.
50 return !ZoomBubbleView::IsShowing() && ImageView::GetTooltipText(p, tooltip);
bubble_icon_view.h 32 virtual bool GetTooltipText(const gfx::Point& p, base::string16* tooltip)
  /external/chromium_org/chrome/browser/ui/cocoa/location_bar/
page_action_decoration.h 52 // Sets the tooltip for this Page Action image.
53 void SetToolTip(NSString* tooltip);
54 void SetToolTip(std::string tooltip);
107 // The string to show for a tooltip.
  /external/chromium_org/ui/views/controls/button/
button.cc 48 base::string16* tooltip) const {
52 *tooltip = tooltip_text_;
button.h 60 base::string16* tooltip) const OVERRIDE;
76 // The text shown in a tooltip.
image_button.cc 224 void ToggleImageButton::SetToggledTooltipText(const base::string16& tooltip) {
225 toggled_tooltip_text_ = tooltip;
253 base::string16* tooltip) const {
255 return Button::GetTooltipText(p, tooltip);
257 *tooltip = toggled_tooltip_text_;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionPanel.js 112 * @param {string=} tooltip
115 WebInspector.ExtensionButton = function(id, iconURL, tooltip, disabled)
121 this.update(iconURL, tooltip, disabled);
127 * @param {string=} tooltip
130 update: function(iconURL, tooltip, disabled)
134 if (typeof tooltip === "string")
135 this.element.title = tooltip;
  /external/chromium_org/chrome/browser/ui/views/autofill/
tooltip_icon.h 22 // A tooltip icon that shows a bubble on hover. Looks like (?).
29 explicit TooltipIcon(const base::string16& tooltip);
59 // Whether the mouse is inside this tooltip.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrintGraph.java 115 * Typically made of a rectangle and an associated text used as tooltip.
121 AreaZone(Rectangle zone, String tooltip) {
124 this.title = tooltip;
164 void addArea(Rectangle rec, String tooltip) {
165 AreaZone zone = new AreaZone(rec, tooltip);
266 StringBuffer tooltip = new StringBuffer("Time for baseline build ");
267 tooltip.append(baselineBuildResults.getName());
268 tooltip.append(": ");
269 tooltip.append(Util.timeString((long)baselineValue));
270 tooltip.append(" [&#177;")
    [all...]

Completed in 328 milliseconds

1 2 3 4 5