OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_anchorNode
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
PositionIterator.h
40
:
m_anchorNode
(0)
47
:
m_anchorNode
(pos.anchorNode())
48
, m_nodeAfterPositionInAnchor(
m_anchorNode
->childNode(pos.deprecatedEditingOffset()))
57
Node* node() const { return
m_anchorNode
; }
67
Node*
m_anchorNode
;
68
Node* m_nodeAfterPositionInAnchor; // If this is non-null, m_nodeAfterPositionInAnchor->parentNode() ==
m_anchorNode
;
Position.h
94
void clear() {
m_anchorNode
.clear(); m_offset = 0; m_anchorType = PositionIsOffsetInAnchor; m_isLegacyEditingPosition = false; }
123
Node* anchorNode() const { return
m_anchorNode
.get(); }
128
Node* deprecatedNode() const { return
m_anchorNode
.get(); }
130
Document* document() const { return
m_anchorNode
? &
m_anchorNode
->document() : 0; }
131
bool inDocument() const { return
m_anchorNode
&&
m_anchorNode
->inDocument(); }
143
bool isNull() const { return !
m_anchorNode
; }
144
bool isNotNull() const { return
m_anchorNode
; }
145
bool isOrphan() const { return
m_anchorNode
&& !m_anchorNode->inDocument();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
ViewportAnchor.h
69
RefPtr<WebCore::Node>
m_anchorNode
;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMEditor.cpp
61
m_anchorNode
= m_node->nextSibling();
67
m_parentNode->insertBefore(m_node.get(),
m_anchorNode
.get(), exceptionState);
80
RefPtr<Node>
m_anchorNode
;
90
,
m_anchorNode
(anchorNode)
101
m_parentNode->insertBefore(m_node.get(),
m_anchorNode
.get(), exceptionState);
119
m_parentNode->insertBefore(m_node.get(),
m_anchorNode
.get(), exceptionState);
126
RefPtr<Node>
m_anchorNode
;
Completed in 69 milliseconds