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

1 2

  /tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/core/skin/
AndroidPressKey.java 56 private final String toolTip;
74 * @param toolTip The text that will be shown as the key tool tip.
84 public AndroidPressKey(String name, String keycode, String toolTip, int startx, int starty,
87 this(name, keycode, toolTip, new Rectangle(startx, starty, endx - startx, endy - starty),
97 * @param toolTip The text that will be shown as the key tool tip.
104 public AndroidPressKey(String name, String keycode, String toolTip, Rectangle key,
109 this.toolTip = toolTip;
201 return toolTip;
  /external/webkit/Source/WebKit2/Shared/
WebPopupItem.cpp 54 WebPopupItem::WebPopupItem(Type type, const String& text, TextDirection textDirection, bool hasTextDirectionOverride, const String& toolTip, const String& accessibilityText, bool isEnabled, bool isLabel)
59 , m_toolTip(toolTip)
77 String toolTip;
81 if (!decoder->decode(CoreIPC::Out(type, text, textDirection, hasTextDirectionOverride, toolTip, accessibilityText, isEnabled, isLabel)))
84 item = WebPopupItem(static_cast<Type>(type), text, static_cast<TextDirection>(textDirection), hasTextDirectionOverride, toolTip, accessibilityText, isEnabled, isLabel);
WebPopupItem.h 47 WebPopupItem(Type, const String& text, WebCore::TextDirection, bool hasTextDirectionOverride, const String& toolTip, const String& accessibilityText, bool isEnabled, bool isLabel);
  /external/webkit/Source/WebCore/page/
Chrome.cpp 371 // First priority is a potential toolTip representing a spelling or grammar error
373 String toolTip = result.spellingToolTip(toolTipDirection);
375 // Next priority is a toolTip from a URL beneath the mouse (if preference is set to show those).
376 if (toolTip.isEmpty() && m_page->settings()->showsURLsInToolTips()) {
378 // Get tooltip representing form action, if relevant
383 toolTip = form->action();
392 // Get tooltip representing link's URL
393 if (toolTip.isEmpty()) {
395 toolTip = result.absoluteLinkURL().string();
401 // Next we'll consider a tooltip for element with "title" attribut
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_controller.h 112 - (NSString*)toolTip;
  /external/webkit/Source/WebKit/mac/WebView/
WebViewEventHandling.mm 228 - (void)_setToolTip:(NSString *)toolTip
233 [documentView _setToolTip:toolTip];
WebViewInternal.h 106 - (void)_setToolTip:(NSString *)toolTip;
WebHTMLView.mm 511 NSString *toolTip;
627 [toolTip release];
652 [toolTip release];
662 toolTip = nil;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
ConfigTab.java 38 import org.eclipse.swt.widgets.ToolTip;
177 // Listen to mouse track events to display the table cell corresponding tooltip.
179 ToolTip currentTooltip;
187 ToolTip tooltip = (ToolTip) ConfigTab.this.toolTips.get(cellPosition);
188 if (tooltip != null) {
190 tooltip.setLocation(location);
191 tooltip.setVisible(true);
192 this.currentTooltip = tooltip;
    [all...]
  /tools/motodev/src/plugins/launch/src/com/motorola/studio/android/launch/ui/
StartedInstancesDialog.java 35 import org.eclipse.jface.window.ToolTip;
286 String toolTip = null;
293 toolTip = LaunchNLS.UI_StartedInstancesDialog_Tooltip;
297 return toolTip;
314 ColumnViewerToolTipSupport.enableFor(viewer, ToolTip.NO_RECREATE);
  /external/webkit/Tools/QtTestBrowser/
launcherwindow.h 158 void showLinkHover(const QString &link, const QString &toolTip);
launcherwindow.cpp 573 void LauncherWindow::showLinkHover(const QString &link, const QString &toolTip)
579 if (!toolTip.isEmpty())
580 QToolTip::showText(QCursor::pos(), toolTip);
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.cpp 475 void WebChromeClient::setToolTip(const String& toolTip, TextDirection)
479 if (toolTip == m_cachedToolTip)
481 m_cachedToolTip = toolTip;
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
ChromeClientEfl.cpp 376 void ChromeClientEfl::setToolTip(const String& toolTip, TextDirection)
378 ewk_view_tooltip_text_set(m_view, toolTip.utf8().data());
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.cpp 429 void QGraphicsWKViewPrivate::onToolTipChanged(const QString& toolTip)
431 q->setToolTip(toolTip);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.cpp 569 void ChromeClient::setToolTip(const String& toolTip, TextDirection)
571 webkit_web_view_set_tooltip_text(m_webView, toolTip.utf8().data());
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebChromeClient.cpp 571 void WebChromeClient::setToolTip(const String& toolTip, TextDirection)
573 m_webView->setToolTip(toolTip);
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.mm 662 void WebChromeClient::setToolTip(const String& toolTip, TextDirection)
664 [m_webView _setToolTip:toolTip];
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteControl.java 643 String toolTip = desc.getUiName();
647 // toolTip = toolTip + "\n" + descToolTip;
649 imageControl.setToolTipText(toolTip);
    [all...]
  /external/proguard/src/proguard/gui/
ProGuardGUI.java     [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.cpp 296 // FIXME: Initializing the tooltip window here matches WebKit win, but seems like something
306 // Tooltip window needs to be explicitly destroyed since it isn't a WS_CHILD.
1000 String toolTip = newToolTip;
1006 info.lpszText = const_cast<UChar*>(toolTip.charactersWithNullTermination());
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.h 304 const String& toolTip() const { return m_toolTip; }
    [all...]
WebPageProxy.cpp     [all...]
  /external/webkit/Source/WebKit/win/
WebView.cpp 387 // the tooltip window needs to be explicitly destroyed since it isn't a WS_CHILD
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 

Completed in 5030 milliseconds

1 2