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

1 2

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/
ChromeContextMenuItemDelegate.java 32 * @param isLink Whether or not the download is a link (as opposed to an image/video).
35 boolean startDownload(boolean isLink);
EmptyChromeContextMenuItemDelegate.java 28 public boolean startDownload(boolean isLink) {
ContextMenuHelper.java 80 * @param isLink Whether or not the download target is a link.
82 public void startContextMenuDownload(boolean isLink) {
83 if (mNativeContextMenuHelper != 0) nativeOnStartDownload(mNativeContextMenuHelper, isLink);
131 private native void nativeOnStartDownload(long nativeContextMenuHelper, boolean isLink);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
VisitedLinkState.cpp 42 ASSERT(element.isLink());
67 if (element->isLink())
77 if (element->isLink() && linkHashForElement(*element) == linkHash)
84 ASSERT(element.isLink());
VisitedLinkState.h 54 if (element.isLink())
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXImageMapLink.h 60 virtual bool isLink() const { return true; }
AXNodeObject.h 116 virtual bool isLink() const;
AXNodeObject.cpp 185 if (node()->isLink())
462 return !isNativeImage() && isLink();
520 bool AXNodeObject::isLink() const
    [all...]
AXObject.h 325 virtual bool isLink() const { return false; }
AXRenderObject.cpp 278 if (node && node->isLink()) {
469 return object.isLink() || object.isImage() || object.renderer()->isText();
518 return m_renderer->style()->isLink() && m_renderer->style()->insideLink() == InsideVisitedLink;
654 if (isLink())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAElement.cpp 135 bool wasLink = isLink();
138 if (wasLink != isLink())
153 if (isLink()) {
  /external/chromium_org/content/renderer/
context_menu_params_builder.cc 60 while (!selectedNode.isLink() && !selectedNode.parentNode().isNull()) {
65 if (selectedNode.isLink() && !selectedElement.isNull()) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.cpp 140 return isLink() || HTMLElement::supportsFocus();
147 if (isLink())
158 if (isLink()) {
199 if (isLink()) {
267 bool wasLink = isLink();
269 if (wasLink != isLink()) {
277 if (isLink()) {
309 if (!isLink())
393 return isLink() && treatLinkAsLiveForEventType(m_wasShiftKeyDownOnMouseDown ? MouseEventWithShiftKey : MouseEventWithoutShiftKey);
492 return isLink() || HTMLElement::willRespondToMouseClickEvents()
    [all...]
HTMLViewSourceDocument.cpp 158 bool isLink = name == srcAttr || name == hrefAttr;
159 index = addRange(source, index, iter->valueRange.end - token.startIndex(), "webkit-html-attribute-value", isLink, tagName == aTag, value);
252 int HTMLViewSourceDocument::addRange(const String& source, int start, int end, const String& className, bool isLink, bool isAnchor, const String& link)
260 if (isLink)
HTMLViewSourceDocument.h 61 int addRange(const String& source, int start, int end, const String& className, bool isLink = false, bool isAnchor = false, const String& link = String());
HTMLAreaElement.cpp 246 return isLink();
  /external/chromium_org/third_party/WebKit/Source/web/
WebNode.cpp 141 bool WebNode::isLink() const
143 return m_private->isLink();
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp 182 if (candidate.isLink() != element().isLink())
217 if (candidate.isLink() && m_context.elementLinkState() != style->insideLink())
  /external/chromium_org/third_party/WebKit/public/web/
WebNode.h 107 BLINK_EXPORT bool isLink() const;
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorCheckerFastPath.cpp 212 return m_element.isLink();
214 return m_element.isLink() && visitedMatchType == SelectorChecker::VisitedMatchEnabled;
SelectorChecker.cpp 230 if (!context.isSubSelector && (context.element->isLink() || (relation != CSSSelector::Descendant && relation != CSSSelector::Child)))
693 return element.isLink();
696 return element.isLink() && context.visitedMatchType == VisitedMatchEnabled;
    [all...]
  /frameworks/av/drm/libdrmframework/include/
PlugInManager.h 261 bool isLink(const struct dirent* pEntry) const {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestResult.cpp 358 return m_innerURLElement->isLink();
376 return m_innerURLElement && m_innerURLElement->isLink();
EllipsisBox.cpp 112 if (!anchorBox || !anchorBox->renderer()->style()->isLink())
  /external/chromium_org/android_webview/renderer/
aw_render_view_ext.cc 286 if (node.isLink())

Completed in 282 milliseconds

1 2