anchorElement      86 Source/core/accessibility/AXImageMapLink.cpp     return anchorElement();
anchorElement      57 Source/core/accessibility/AXImageMapLink.h     virtual Element* anchorElement() const OVERRIDE;
anchorElement    1409 Source/core/accessibility/AXNodeObject.cpp     Element* elt = anchorElement();
anchorElement     187 Source/core/accessibility/AXNodeObject.h     virtual Element* anchorElement() const OVERRIDE;
anchorElement     511 Source/core/accessibility/AXObject.h     virtual Element* anchorElement() const { return 0; }
anchorElement     474 Source/core/accessibility/AXRenderObject.cpp     Element* anchor = anchorElement();
anchorElement     815 Source/core/accessibility/AXRenderObject.cpp         if (HTMLAnchorElement* anchor = toHTMLAnchorElement(anchorElement()))
anchorElement    1543 Source/core/accessibility/AXRenderObject.cpp                 return cache->getOrCreate(continuation)->anchorElement();
anchorElement    1930 Source/core/accessibility/AXRenderObject.cpp     Element* element = anchorElement();
anchorElement     184 Source/core/accessibility/AXRenderObject.h     virtual Element* anchorElement() const OVERRIDE;
anchorElement      45 Source/core/editing/CreateLinkCommand.cpp     RefPtr<HTMLAnchorElement> anchorElement = HTMLAnchorElement::create(document());
anchorElement      46 Source/core/editing/CreateLinkCommand.cpp     anchorElement->setHref(AtomicString(m_url));
anchorElement      49 Source/core/editing/CreateLinkCommand.cpp         applyStyledElement(anchorElement.get());
anchorElement      51 Source/core/editing/CreateLinkCommand.cpp         insertNodeAt(anchorElement.get(), endingSelection().start());
anchorElement      53 Source/core/editing/CreateLinkCommand.cpp         appendNode(textNode.get(), anchorElement.get());
anchorElement      54 Source/core/editing/CreateLinkCommand.cpp         setEndingSelection(VisibleSelection(positionInParentBeforeNode(*anchorElement), positionInParentAfterNode(*anchorElement), DOWNSTREAM, endingSelection().isDirectional()));
anchorElement      75 Source/core/html/HTMLAnchorElement.cpp     static PassOwnPtr<PrefetchEventHandler> create(HTMLAnchorElement* anchorElement)
anchorElement      77 Source/core/html/HTMLAnchorElement.cpp         return adoptPtr(new HTMLAnchorElement::PrefetchEventHandler(anchorElement));
anchorElement     542 Source/core/html/HTMLAnchorElement.cpp HTMLAnchorElement::PrefetchEventHandler::PrefetchEventHandler(HTMLAnchorElement* anchorElement)
anchorElement     543 Source/core/html/HTMLAnchorElement.cpp     : m_anchorElement(anchorElement)