Home | History | Annotate | Download | only in rendering

Lines Matching refs:quotesData

82     QuotesData* data;
239 const QuotesData* quotesDataForLanguage(const AtomicString& lang)
253 match->data = QuotesData::create(match->open1, match->close1, match->open2, match->close2).leakRef();
258 static const QuotesData* basicQuotesData()
261 DEFINE_STATIC_REF(QuotesData, staticBasicQuotes, (QuotesData::create('"', '"', '\'', '\'')));
288 return quotesData()->getCloseQuote(m_depth - 1).impl();
290 return quotesData()->getOpenQuote(m_depth).impl();
296 const QuotesData* RenderQuote::quotesData() const
298 if (const QuotesData* customQuotes = style()->quotes())
301 if (const QuotesData* quotes = quotesDataForLanguage(style()->locale()))