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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
QuotesData.cpp 44 m_quotePairs.append(quotePair);
50 if (!m_quotePairs.size() || index < 0)
52 if ((size_t)index >= m_quotePairs.size())
53 return m_quotePairs.last().first;
54 return m_quotePairs.at(index).first;
60 if (!m_quotePairs.size() || index < 0)
62 if ((size_t)index >= m_quotePairs.size())
63 return m_quotePairs.last().second;
64 return m_quotePairs.at(index).second;
QuotesData.h 38 bool operator==(const QuotesData& o) const { return m_quotePairs == o.m_quotePairs; }
48 Vector<std::pair<String, String> > m_quotePairs;

Completed in 762 milliseconds