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 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 45 milliseconds