Home | History | Annotate | Download | only in rendering

Lines Matching defs:quotes

74 // 1. The list of quotes already in the renderers tree of the document is already in a consistent state
91 // We need to splice the list of quotes headed by head into the document's list of quotes.
244 const QuotesData* quotes = style()->quotes();
245 if (!quotes)
246 quotes = defaultQuotes(this);
247 if (!quotes->length)
266 if (index >= quotes->length)
267 index = (quotes->length-2) | (index & 1);
270 return quotes->data()[index].impl();
324 const QuotesData* newQuotes = style()->quotes();
325 const QuotesData* oldQuotes = oldStyle ? oldStyle->quotes() : 0;