HomeSort by relevance Sort by last modified time
    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 = m_containerBox->firstChildBox();
68 m_currentChild = m_currentChild->nextSiblingBox();
70 } while (!m_currentChild || m_currentChild->style()->order() != *m_orderValuesIterator);
72 return m_currentChild;
77 m_currentChild = 0;
OrderIterator.h 49 RenderBox* currentChild() const { return m_currentChild; }
57 RenderBox* m_currentChild;
RenderDeprecatedFlexibleBox.cpp 64 m_currentChild = 0;
77 if (!m_currentChild) {
94 m_currentChild = m_forward ? m_box->firstChildBox() : m_box->lastChildBox();
96 m_currentChild = m_forward ? m_currentChild->nextSiblingBox() : m_currentChild->previousSiblingBox();
98 if (m_currentChild && notFirstOrdinalValue())
99 m_ordinalValues.add(m_currentChild->style()->boxOrdinalGroup());
100 } while (!m_currentChild || (!m_currentChild->isAnonymous(
    [all...]

Completed in 124 milliseconds