HomeSort by relevance Sort by last modified time
    Searched refs:anchorNode (Results 1 - 14 of 14) sorted by null

  /external/webkit/WebCore/dom/
Position.h 72 Position(PassRefPtr<Node> anchorNode, int offset);
75 Position(PassRefPtr<Node> anchorNode, AnchorType);
77 Position(PassRefPtr<Node> anchorNode, int offset, AnchorType);
106 Node* anchorNode() const { return m_anchorNode.get(); }
115 void moveToPosition(PassRefPtr<Node> anchorNode, int offset);
177 static AnchorType anchorTypeForLegacyEditingPosition(Node* anchorNode, int offset);
192 return a.anchorNode() == b.anchorNode() && a.deprecatedEditingOffset() == b.deprecatedEditingOffset();
220 inline Position positionBeforeNode(Node* anchorNode)
222 ASSERT(anchorNode);
    [all...]
PositionIterator.h 47 : m_anchorNode(pos.anchorNode())
Position.cpp 76 Position::Position(PassRefPtr<Node> anchorNode, int offset)
77 : m_anchorNode(anchorNode)
84 Position::Position(PassRefPtr<Node> anchorNode, AnchorType anchorType)
85 : m_anchorNode(anchorNode)
93 Position::Position(PassRefPtr<Node> anchorNode, int offset, AnchorType anchorType)
94 : m_anchorNode(anchorNode)
185 Position::AnchorType Position::anchorTypeForLegacyEditingPosition(Node* anchorNode, int offset)
187 if (anchorNode && editingIgnoresContent(anchorNode)) {
195 // FIXME: This method is confusing (does it return anchorNode() or containerNode()?) and should be renamed or remove
    [all...]
  /external/webkit/WebCore/editing/
htmlediting.h 127 inline Position firstDeepEditingPositionForNode(Node* anchorNode)
129 ASSERT(anchorNode);
130 return Position(anchorNode, 0);
133 inline Position lastDeepEditingPositionForNode(Node* anchorNode)
135 ASSERT(anchorNode);
136 return Position(anchorNode, lastOffsetForEditing(anchorNode));
CompositeEditCommand.cpp 627 if (p.anchorNode()->hasTagName(brTag)) {
628 removeNode(p.anchorNode());
632 deleteTextFromNode(static_cast<Text*>(p.anchorNode()), p.offsetInContainerNode(), 1);
704 void CompositeEditCommand::pushAnchorElementDown(Node* anchorNode)
706 if (!anchorNode)
709 ASSERT(anchorNode->isLink());
711 setEndingSelection(VisibleSelection::selectionFromContentsOfNode(anchorNode));
712 applyStyledElement(static_cast<Element*>(anchorNode));
713 // Clones of anchorNode have been pushed down, now remove it.
714 if (anchorNode->inDocument()
    [all...]
ReplaceSelectionCommand.cpp     [all...]
htmlediting.cpp     [all...]
  /external/webkit/WebCore/accessibility/win/
AXObjectCacheWin.cpp 55 void AXObjectCache::handleScrolledToAnchor(const Node* anchorNode)
59 postPlatformNotification(AccessibilityObject::firstAccessibleObjectFromNode(anchorNode), AXScrolledToAnchor);
  /external/webkit/WebCore/page/
DOMSelection.h 71 Node* anchorNode() const;
DOMSelection.idl 35 readonly attribute Node anchorNode;
FrameView.cpp 890 Element* anchorNode = m_frame->document()->findAnchor(name);
902 if (anchorNode && anchorNode->hasTagName(SVGNames::viewTag)) {
903 RefPtr<SVGViewElement> viewElement = anchorNode->hasTagName(SVGNames::viewTag) ? static_cast<SVGViewElement*>(anchorNode) : 0;
915 m_frame->document()->setCSSTarget(anchorNode); // Setting to null will clear the current target.
918 if (!anchorNode && !(name.isEmpty() || equalIgnoringCase(name, "top")))
925 maintainScrollPositionAtAnchor(anchorNode ? static_cast<Node*>(anchorNode) : m_frame->document());
932 void FrameView::maintainScrollPositionAtAnchor(Node* anchorNode)
    [all...]
DOMSelection.cpp 46 Node* node = frame->selection()->selection().base().anchorNode();
98 Node* DOMSelection::anchorNode() const
  /external/webkit/WebCore/accessibility/
AXObjectCache.h 90 void handleScrolledToAnchor(const Node* anchorNode);
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp     [all...]

Completed in 107 milliseconds