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

1 2 3 4 5 6

  /external/chromium_org/ui/views/corewm/
tooltip_aura_unittest.cc 25 base::string16 tooltip; local
33 int error_in_pixel_width = gfx::GetStringWidth(ASCIIToUTF16("tooltip"),
37 tooltip.clear();
40 for (; gfx::GetStringWidth(tooltip, font_list) <=
42 tooltip.append(ASCIIToUTF16("This is part of the tooltip"));
43 tooltip_len = tooltip.length();
44 TooltipAura::TrimTooltipToFit(font_list, max_width, &tooltip, &width,
48 EXPECT_EQ(tooltip_len + expect_lines - 1, tooltip.length());
51 tooltip.clear()
90 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.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
ManifestElementDescriptor.java 27 * its display name and tooltip.
38 * @param tooltip An optional tooltip. Can be null or empty.
46 String tooltip,
51 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
59 * @param tooltip An optional tooltip. Can be null or empty.
67 String tooltip,
72 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
80 * @param tooltip An optional tooltip. Can be null or empty
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Checkbox.js 30 * @param {string=} tooltip
32 WebInspector.Checkbox = function(label, className, tooltip)
41 if (tooltip)
42 this.element.title = tooltip;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
TextValueDescriptor.java 35 * @param tooltip A non-empty tooltip string or null
37 public TextValueDescriptor(String uiName, String tooltip) {
40 setTooltip(tooltip);
TextAttributeDescriptor.java 42 * Such an attribute has a tooltip and would typically be displayed by
105 * Sets the tooltip to be associated with this descriptor. This is usually
109 * @param tooltip the new tooltip to be used
112 public TextAttributeDescriptor setTooltip(String tooltip) {
113 mTooltip = tooltip;
140 * The tooltip string is either null or a non-empty string.
142 * The tooltip is based on the Javadoc of the attribute and already processed via
144 * a UI tooltip.
149 * @return A non-empty tooltip string or nul
160 String tooltip = null; local
    [all...]
ElementDescriptor.java 36 * {@link ElementDescriptor} have an XML name, UI name, a tooltip, an SDK url,
54 /* An optional tooltip. Can be empty. */
69 * tooltip, SDK url, attributes list, children list and mandatory.
73 * @param tooltip An optional tooltip. Can be null or empty.
82 public ElementDescriptor(String xml_name, String ui_name, String tooltip, String sdk_url,
89 mTooltip = (tooltip != null && tooltip.length() > 0) ? tooltip : null;
97 * tooltip, SDK url, attributes list, children list and mandatory
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 117 * @param tooltip An optional tooltip for the label and text. Can be null.
121 String tooltip) {
122 return SectionHelper.createLabel(parent, toolkit, label, tooltip);
134 * @param tooltip An optional tooltip for the label and text. Can be null.
138 String value, String tooltip) {
139 return SectionHelper.createLabelAndText(parent, toolkit, label, value, tooltip);
240 * @param tooltip An optional tooltip for the label and text. Can be null
    [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; }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/
ColorValueDescriptor.java 30 public ColorValueDescriptor(String uiName, String tooltip) {
31 super(uiName, tooltip);
ItemElementDescriptor.java 32 * tooltip, SDK url, attributes list, children list and mandatory.
36 * @param tooltip An optional tooltip. Can be null or empty.
46 String tooltip, String sdk_url, AttributeDescriptor[] attributes,
48 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
  /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 49 base::string16* tooltip) const {
50 // Don't show tooltip if the zoom bubble is displayed.
51 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 48 // Sets the tooltip for this Page Action image.
49 void SetToolTip(NSString* tooltip);
50 void SetToolTip(std::string tooltip);
99 // 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_;
  /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.

Completed in 354 milliseconds

1 2 3 4 5 6