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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAElement.cpp 119 bool wasLink = isLink();
122 if (wasLink != isLink())
137 if (isLink()) {
185 return isLink() || Element::supportsFocus();
197 if (isLink())
208 if (isLink())
215 if (!isLink())
222 return isLink() || SVGGraphicsElement::willRespondToMouseClickEvents();
  /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/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/
ChromeContextMenuItemDelegate.java 34 * @param isLink Whether or not the download is a link (as opposed to an image/video).
37 boolean startDownload(boolean isLink);
EmptyChromeContextMenuItemDelegate.java 30 public boolean startDownload(boolean isLink) {
ContextMenuHelper.java 79 * @param isLink Whether or not the download target is a link.
81 public void startContextMenuDownload(boolean isLink) {
82 if (mNativeContextMenuHelper != 0) nativeOnStartDownload(mNativeContextMenuHelper, isLink);
130 private native void nativeOnStartDownload(long nativeContextMenuHelper, boolean isLink);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXImageMapLink.h 60 virtual bool isLink() const OVERRIDE { return true; }
AXNodeObject.h 117 virtual bool isLink() const OVERRIDE FINAL;
AXNodeObject.cpp 186 if (node()->isLink())
465 return !isNativeImage() && isLink();
523 bool AXNodeObject::isLink() const
    [all...]
AXObject.h 326 virtual bool isLink() const { return false; }
AXRenderObject.cpp 268 if (node && node->isLink()) {
461 return object.isLink() || object.isImage() || object.renderer()->isText();
510 return m_renderer->style()->isLink() && m_renderer->style()->insideLink() == InsideVisitedLink;
650 if (isLink())
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/content/
bigram_dict_content.cpp 39 const bool isLink = (bigramFlags & Ver4DictConstants::BIGRAM_IS_LINK_MASK) != 0;
60 if (isLink) {
82 return writeBigramEntryAttributesAndAdvancePosition(false /* isLink */,
91 const bool isLink, const int probability, const int targetTerminalId,
94 const int bigramFlags = isLink ? Ver4DictConstants::BIGRAM_IS_LINK_MASK : 0;
141 return writeBigramEntryAttributesAndAdvancePosition(true /* isLink */,
bigram_dict_content.h 117 const bool isLink, const int probability, const int targetTerminalId,
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.cpp 133 return isLink() || HTMLElement::supportsFocus();
140 if (isLink())
153 if (isLink() && !document().frameHost()->chrome().client().tabsToLinks())
189 if (isLink()) {
219 bool wasLink = isLink();
221 if (wasLink != isLink()) {
229 if (isLink()) {
265 if (!isLink())
343 return isLink() && !rendererIsEditable();
411 return isLink() || HTMLElement::willRespondToMouseClickEvents()
    [all...]
HTMLViewSourceDocument.h 68 int addRange(const String& source, int start, int end, const AtomicString& className, bool isLink = false, bool isAnchor = false, const AtomicString& link = nullAtom);
HTMLViewSourceDocument.cpp 165 bool isLink = name == srcAttr || name == hrefAttr;
166 index = addRange(source, index, iter->valueRange.end - token.startIndex(), "webkit-html-attribute-value", isLink, tagName == aTag, value);
261 int HTMLViewSourceDocument::addRange(const String& source, int start, int end, const AtomicString& className, bool isLink, bool isAnchor, const AtomicString& link)
269 if (isLink)
  /external/chromium_org/content/renderer/
context_menu_params_builder.cc 61 while (!selectedNode.isLink() && !selectedNode.parentNode().isNull()) {
66 if (selectedNode.isLink() && !selectedElement.isNull()) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebNode.cpp 145 bool WebNode::isLink() const
147 return m_private->isLink();
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp 219 if (candidate.isLink() != element().isLink())
248 if (candidate.isLink() && m_context.elementLinkState() != style->insideLink())
  /external/chromium_org/third_party/WebKit/public/web/
WebNode.h 107 BLINK_EXPORT bool isLink() const;
  /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 355 return m_innerURLElement->isLink();
373 return m_innerURLElement && m_innerURLElement->isLink();
EllipsisBox.cpp 110 if (!anchorBox || !anchorBox->renderer().style()->isLink())
  /external/chromium_org/android_webview/renderer/
aw_render_view_ext.cc 250 if (node.isLink())
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.cpp 253 if (!context.isSubSelector && (context.element->isLink() || (relation != CSSSelector::Descendant && relation != CSSSelector::Child)))
    [all...]

Completed in 514 milliseconds

1 2 3