OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_lastChild
(Results
1 - 13
of
13
) sorted by null
/external/webkit/Source/WebCore/rendering/
RenderObjectChildList.h
40
,
m_lastChild
(0)
45
RenderObject* lastChild() const { return
m_lastChild
; }
50
void setLastChild(RenderObject* child) {
m_lastChild
= child; }
64
RenderObject*
m_lastChild
;
CounterNode.cpp
41
,
m_lastChild
(0)
80
CounterNode* last =
m_lastChild
;
84
while (CounterNode* lastChild = last->
m_lastChild
)
96
while (CounterNode* lastChild = previous->
m_lastChild
)
201
while (
m_lastChild
!= refChild)
202
RenderCounter::destroyCounterNode(
m_lastChild
->owner(), identifier);
224
ASSERT(
m_lastChild
== refChild);
225
m_lastChild
= newChild;
237
CounterNode* last = newChild->
m_lastChild
;
255
m_lastChild
= last
[
all
...]
CounterNode.h
62
CounterNode* lastChild() const { return
m_lastChild
; }
91
CounterNode*
m_lastChild
;
InlineFlowBox.h
43
,
m_lastChild
(0)
72
InlineBox* lastChild() const { checkConsistency(); return
m_lastChild
; }
283
InlineBox*
m_lastChild
;
InlineFlowBox.cpp
91
m_lastChild
= child;
93
m_lastChild
->setNextOnLine(child);
94
child->setPrevOnLine(
m_lastChild
);
95
m_lastChild
= child;
176
if (child ==
m_lastChild
)
177
m_lastChild
= child->prevOnLine();
203
m_lastChild
= 0;
[
all
...]
/external/webkit/Source/WebCore/page/
FrameTree.h
36
,
m_lastChild
(0)
52
Frame* lastChild() const { return
m_lastChild
; }
87
Frame*
m_lastChild
;
FrameTree.cpp
95
Frame* oldLast =
m_lastChild
;
96
m_lastChild
= child.get();
106
ASSERT(!
m_lastChild
->tree()->m_nextSibling);
118
Frame*& newLocationForPrevious =
m_lastChild
== child ?
m_lastChild
: child->tree()->m_nextSibling->tree()->m_previousSibling;
/external/webkit/Source/WebCore/dom/
ContainerNode.h
45
Node* lastChild() const { return
m_lastChild
; }
102
void setLastChild(Node* child) {
m_lastChild
= child; }
120
Node*
m_lastChild
;
141
,
m_lastChild
(0)
ContainerNode.cpp
198
ASSERT(
m_lastChild
!= prev);
328
ASSERT(
m_lastChild
!= prev);
332
ASSERT(
m_lastChild
== prev);
333
m_lastChild
= child.get();
367
for (Node* n =
m_lastChild
; n; n = n->previousSibling())
477
if (
m_lastChild
== oldChild)
478
m_lastChild
= previousChild;
535
if (n ==
m_lastChild
)
536
m_lastChild
= 0;
584
if (newChild ==
m_lastChild
) // nothing to d
[
all
...]
/external/webkit/Source/WebKit2/UIProcess/
WebFrameProxy.cpp
50
,
m_lastChild
(0)
70
m_lastChild
= 0;
198
WebFrameProxy* oldLast =
m_lastChild
;
199
m_lastChild
= child;
214
WebFrameProxy*& newLocationForPrevious =
m_lastChild
== child ?
m_lastChild
: child->m_nextSibling->m_previousSibling;
WebFrameProxy.h
79
WebFrameProxy* lastChild() { return
m_lastChild
; }
146
WebFrameProxy*
m_lastChild
;
/external/webkit/Source/WebCore/svg/
SVGElementInstance.h
75
SVGElementInstance* lastChild() const { return
m_lastChild
; }
149
void setLastChild(SVGElementInstance* child) {
m_lastChild
= child; }
168
SVGElementInstance*
m_lastChild
;
SVGElementInstance.cpp
51
,
m_lastChild
(0)
Completed in 543 milliseconds