HomeSort by relevance Sort by last modified time
    Searched defs:m_currentChild (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
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 540 milliseconds