Home
last modified time | relevance | path

Searched refs:QuotesData (Results 1 – 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DQuotesData.cpp27 PassRefPtr<QuotesData> QuotesData::create(String open, String close) in create()
29 RefPtr<QuotesData> data = QuotesData::create(); in create()
34 PassRefPtr<QuotesData> QuotesData::create(UChar open1, UChar close1, UChar open2, UChar close2) in create()
36 RefPtr<QuotesData> data = QuotesData::create(); in create()
42 void QuotesData::addPair(std::pair<String, String> quotePair) in addPair()
47 const String QuotesData::getOpenQuote(int index) const in getOpenQuote()
57 const String QuotesData::getCloseQuote(int index) const in getCloseQuote()
DQuotesData.h32 class QuotesData : public RefCounted<QuotesData> {
34 static PassRefPtr<QuotesData> create() { return adoptRef(new QuotesData()); } in create()
35 static PassRefPtr<QuotesData> create(const String open, const String close);
36 static PassRefPtr<QuotesData> create(UChar open1, UChar close1, UChar open2, UChar close2);
38 bool operator==(const QuotesData& o) const { return m_quotePairs == o.m_quotePairs; }
39 bool operator!=(const QuotesData& o) const { return !(*this == o); }
46 QuotesData() { } in QuotesData() function
DStyleRareInheritedData.h41 class QuotesData; variable
146 RefPtr<QuotesData> quotes;
DRenderStyle.h1495 QuotesData* quotes() const { return rareInheritedData->quotes.get(); } in quotes()
1496 void setQuotes(PassRefPtr<QuotesData>);
1720 static QuotesData* initialQuotes() { return 0; } in initialQuotes()
DRenderStyle.cpp720 void RenderStyle::setQuotes(PassRefPtr<QuotesData> q) in setQuotes()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderQuote.cpp82 QuotesData* data;
239 const QuotesData* quotesDataForLanguage(const AtomicString& lang) in quotesDataForLanguage()
253 …match->data = QuotesData::create(match->open1, match->close1, match->open2, match->close2).leakRef… in quotesDataForLanguage()
258 static const QuotesData* basicQuotesData() in basicQuotesData()
261 DEFINE_STATIC_REF(QuotesData, staticBasicQuotes, (QuotesData::create('"', '"', '\'', '\''))); in basicQuotesData()
296 const QuotesData* RenderQuote::quotesData() const in quotesData()
298 if (const QuotesData* customQuotes = style()->quotes()) in quotesData()
301 if (const QuotesData* quotes = quotesDataForLanguage(style()->locale())) in quotesData()
DRenderQuote.h52 const QuotesData* quotesData() const;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleBuilderConverter.cpp503 PassRefPtr<QuotesData> StyleBuilderConverter::convertQuotes(StyleResolverState&, CSSValue* value) in convertQuotes()
507 RefPtr<QuotesData> quotes = QuotesData::create(); in convertQuotes()
518 return QuotesData::create(); in convertQuotes()
DStyleBuilderConverter.h67 static PassRefPtr<QuotesData> convertQuotes(StyleResolverState&, CSSValue*);
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_rendering.target.darwin-mips.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.linux-arm64.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.darwin-mips64.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.linux-mips.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.darwin-x86_64.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.linux-x86_64.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.linux-mips64.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.darwin-arm64.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.darwin-x86.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.darwin-arm.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.linux-x86.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.linux-arm.mk174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dcore.gypi1821 'rendering/style/QuotesData.cpp',
1822 'rendering/style/QuotesData.h',