HomeSort by relevance Sort by last modified time
    Searched full:m_inspector (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSValueList.h 104 CSSValueListIterator(CSSValue* value) : m_inspector(value), m_position(0) { }
105 bool hasMore() const { return m_position < m_inspector.length(); }
106 CSSValue* value() const { return m_inspector.item(m_position); }
108 void advance() { m_position++; ASSERT(m_position <= m_inspector.length());}
111 CSSValueListInspector m_inspector; member in class:WebCore::CSSValueListIterator

Completed in 66 milliseconds