OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_currentChild
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
OrderIterator.cpp
40
,
m_currentChild
(0)
54
if (!
m_currentChild
) {
66
m_currentChild
= firstChildBox();
68
m_currentChild
= nextSiblingBox();
70
} while (!
m_currentChild
||
m_currentChild
->style()->order() != *m_orderValuesIterator);
72
return
m_currentChild
;
77
m_currentChild
= 0;
94
return
m_currentChild
->nextSiblingBox();
OrderIterator.h
50
RenderBox* currentChild() const { return
m_currentChild
; }
63
RenderBox*
m_currentChild
;
RenderDeprecatedFlexibleBox.cpp
65
m_currentChild
= 0;
78
if (!
m_currentChild
) {
95
m_currentChild
= m_forward ? m_box->firstChildBox() : m_box->lastChildBox();
97
m_currentChild
= m_forward ?
m_currentChild
->nextSiblingBox() :
m_currentChild
->previousSiblingBox();
99
if (
m_currentChild
&& notFirstOrdinalValue())
100
m_ordinalValues.add(
m_currentChild
->style()->boxOrdinalGroup());
101
} while (!
m_currentChild
|| (!
m_currentChild
->isAnonymous(
[
all
...]
Completed in 2678 milliseconds