/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
IPropertyTooltipSite.java | 27 * Hides current tooltip.
|
PropertyTooltipTextProvider.java | 49 // create tooltip Control 64 * @return the text to show as tooltip.
|
/external/chromium_org/chrome/tools/tracing/ |
trace.html | 46 #tooltip {
182 var tooltip = document.getElementById("tooltip");
183 tooltip.innerHTML = inner;
186 tooltip.style.top = event.pageY + 3;
187 tooltip.style.left = event.pageX + 3;
188 tooltip.style.display = "block";
346 var tooltip = document.getElementById("tooltip");
347 tooltip.style.display = "none"; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
Chrome.cpp | 311 // First priority is a potential toolTip representing a spelling or grammar error 313 String toolTip = result.spellingToolTip(toolTipDirection); 315 // Next we'll consider a tooltip for element with "title" attribute 316 if (toolTip.isEmpty()) 317 toolTip = result.title(toolTipDirection); 319 // Lastly, for <input type="file"> that allow multiple files, we'll consider a tooltip for the selected filenames 320 if (toolTip.isEmpty()) { 324 toolTip = input->defaultToolTip(); 326 // FIXME: We should obtain text direction of tooltip from 329 // ChromeClient::setToolTip. We'll work on tooltip tex [all...] |
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
autocomplete_text_field_cell_unittest.mm | 270 NSString* tooltip = @"tooltip"; 272 // Left decoration returns a tooltip, make sure it is called at 276 .WillOnce(Return(tooltip)) 277 .WillRepeatedly(Return(tooltip)); 279 // Right decoration returns no tooltip, make sure it is called at 292 // |controlView| gets the tooltip for the left decoration. 294 [[controlView expect] addToolTip:tooltip forRect:leftDecorationRect];
|
autocomplete_text_field.h | 117 // Holds current tooltip strings, to keep them from being dealloced. 134 // Updates cursor and tooltip rects depending on the contents of the text field 142 // Retains |tooltip| (in |currentToolTips_|) and adds this tooltip 144 - (void)addToolTip:(NSString*)tooltip forRect:(NSRect)aRect;
|
/external/chromium-trace/trace-viewer/src/tracing/tracks/ |
cpu_track.js | 38 get tooltip() { 42 set tooltip(value) {
|
/external/chromium_org/ash/shelf/ |
shelf_tooltip_manager_unittest.cc | 132 // Once the shelf is hidden, the tooltip should be invisible. 166 // Tooltip visibility change for auto hide may take time. 202 // Shouldn't hide if the touch happens on the tooltip. 232 // Shouldn't hide if the mouse is in the tooltip. 242 // Should hide if the mouse is out of the tooltip. 250 // Checks that tooltip is hidden when mouse is pressed in anywhere. 261 // Should hide if the mouse is pressed in the tooltip. 271 // Should hide if the mouse is pressed outside of the tooltip.
|
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/ |
autocomplete_text_field_cell_unittest.mm | 267 NSString* tooltip = @"tooltip"; 269 // Left decoration returns a tooltip, make sure it is called at 273 .WillOnce(Return(tooltip)) 274 .WillRepeatedly(Return(tooltip)); 276 // Right decoration returns no tooltip, make sure it is called at 289 // |controlView| gets the tooltip for the left decoration. 291 [[controlView expect] addToolTip:tooltip forRect:leftDecorationRect];
|
autocomplete_text_field.h | 124 // Holds current tooltip strings, to keep them from being dealloced. 144 // Updates cursor and tooltip rects depending on the contents of the text field 152 // Retains |tooltip| (in |currentToolTips_|) and adds this tooltip 154 - (void)addToolTip:(NSString*)tooltip forRect:(NSRect)aRect;
|
/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;
|
/external/chromium_org/chrome/browser/ui/views/passwords/ |
manage_passwords_icon_view.h | 26 // Updates the image and its tooltip appropriately, hiding or showing the icon 40 base::string16* tooltip) const OVERRIDE;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
TextDisplayPropertyEditor.java | 53 // tooltip for value text 61 * @return the {@link PropertyTooltipProvider} to display value 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);
|
/build/tools/droiddoc/templates-ds/assets/design/ |
default.js | 137 var $tooltip = $('<div>') 138 .addClass('tooltip-box') 150 $tooltip.css({ 154 $tooltip.addClass('below'); 155 $tooltip.show(); 158 $tooltip.hide();
|
/build/tools/droiddoc/templates-pdk/assets/design/ |
default.js | 137 var $tooltip = $('<div>') 138 .addClass('tooltip-box') 150 $tooltip.css({ 154 $tooltip.addClass('below'); 155 $tooltip.show(); 158 $tooltip.hide();
|
/build/tools/droiddoc/templates-sac/assets/design/ |
default.js | 137 var $tooltip = $('<div>') 138 .addClass('tooltip-box') 150 $tooltip.css({ 154 $tooltip.addClass('below'); 155 $tooltip.show(); 158 $tooltip.hide();
|
/build/tools/droiddoc/templates-sdk/assets/design/ |
default.js | 137 var $tooltip = $('<div>') 138 .addClass('tooltip-box') 150 $tooltip.css({ 154 $tooltip.addClass('below'); 155 $tooltip.show(); 158 $tooltip.hide();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
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...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ExtensionPanel.js | 108 * @param {string=} tooltip 111 WebInspector.ExtensionButton = function(id, iconURL, tooltip, disabled) 117 this.update(iconURL, tooltip, disabled); 123 * @param {string=} tooltip 126 update: function(iconURL, tooltip, disabled) 130 if (typeof tooltip === "string") 131 this.element.title = tooltip;
|
/external/chromium_org/ui/views/controls/ |
label_unittest.cc | 104 string16 tooltip; local 105 EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip)); 106 EXPECT_EQ(test_text, tooltip); 108 string16 tooltip_text(ASCIIToUTF16("The tooltip!")); 110 EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip)); 111 EXPECT_EQ(tooltip_text, tooltip); 115 EXPECT_TRUE(label.GetTooltipText(gfx::Point(), &tooltip)); 116 EXPECT_EQ(test_text, tooltip); 119 // and expect there to be no tooltip. 121 EXPECT_FALSE(label.GetTooltipText(gfx::Point(), &tooltip)); [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/tabs/ |
tab_strip_controller_unittest.mm | 184 // Set tab 1 tooltip. 188 // Set tab 2 tooltip. 195 // Check that there's no tooltip yet. 246 // Initially, tab title and tooltip text are equivalent. 251 EXPECT_NSEQ(baseTitle, [tabController toolTip]); 254 // the tooltip text should include the following appended: 1) a line break; 268 NSString* const toolTipText = [tabController toolTip]; 279 // Simulate the end of tab video capture. Tab title and tooltip should become 286 EXPECT_NSEQ(baseTitle, [tabController toolTip]);
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
hover_close_button.mm | 189 // Add a tooltip. Using 'owner:self' means that 191 // tooltip contents immediately before showing it. 198 // Called each time a tooltip is about to be shown. 206 // Don't show the tooltip in that case. 213 return nil; // Do not show the tooltip.
|
/external/chromium_org/ui/views/controls/button/ |
image_button.cc | 223 void ToggleImageButton::SetToggledTooltipText(const string16& tooltip) { 224 toggled_tooltip_text_ = tooltip; 252 string16* tooltip) const { 254 return Button::GetTooltipText(p, tooltip); 256 *tooltip = toggled_tooltip_text_;
|
/external/chromium/chrome/browser/ui/views/ |
edit_search_engine_dialog.h | 77 // Updates the tooltip and image of the image view based on is_valid. If 78 // is_valid is false the tooltip of the image view is set to the message with 79 // id invalid_message_id, otherwise the tooltip is set to the empty text.
|