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

1 2

  /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...]
  /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 641 String toolTip = desc.getUiName();
645 // toolTip = toolTip + "\n" + descToolTip;
647 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 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm     [all...]

Completed in 1274 milliseconds

1 2