Home
last modified time | relevance | path

Searched refs:QuotesData (Results 1 – 17 of 17) 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()
67 bool QuotesData::equals(const QuotesData* a, const QuotesData* b) in equals()
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);
39 static bool equals(const QuotesData*, const QuotesData*);
46 QuotesData() { } in QuotesData() function
DStyleRareInheritedData.h39 class QuotesData; variable
116 RefPtr<QuotesData> quotes;
DStyleVariableData.h43 class QuotesData; variable
DStyleRareInheritedData.cpp209 && QuotesData::equals(quotes.get(), o.quotes.get()) in operator ==()
DRenderStyle.cpp583 … if (!QuotesData::equals(rareInheritedData->quotes.get(), other->rareInheritedData->quotes.get())) in diff()
708 void RenderStyle::setQuotes(PassRefPtr<QuotesData> q) in setQuotes()
710 if (QuotesData::equals(rareInheritedData->quotes.get(), q.get())) in setQuotes()
DRenderStyle.h1466 QuotesData* quotes() const { return rareInheritedData->quotes.get(); } in quotes()
1467 void setQuotes(PassRefPtr<QuotesData>);
1694 static QuotesData* initialQuotes() { return 0; } in initialQuotes()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderQuote.cpp75 QuotesData* data;
232 const QuotesData* quotesDataForLanguage(const AtomicString& lang) in quotesDataForLanguage()
246 …match->data = QuotesData::create(match->open1, match->close1, match->open2, match->close2).leakRef… in quotesDataForLanguage()
251 static const QuotesData* basicQuotesData() in basicQuotesData()
254 DEFINE_STATIC_REF(QuotesData, staticBasicQuotes, (QuotesData::create('"', '"', '\'', '\''))); in basicQuotesData()
289 const QuotesData* RenderQuote::quotesData() const in quotesData()
291 if (const QuotesData* customQuotes = style()->quotes()) in quotesData()
294 if (const QuotesData* quotes = quotesDataForLanguage(style()->locale())) in quotesData()
DRenderQuote.h51 const QuotesData* quotesData() const;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleBuilderCustom.cpp1305 RefPtr<QuotesData> quotes = QuotesData::create(); in oldApplyProperty()
1321 state.style()->setQuotes(QuotesData::create()); in oldApplyProperty()
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_rendering.target.linux-mips.mk169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.darwin-x86.mk169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.darwin-mips.mk169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.darwin-arm.mk169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.linux-x86.mk169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dwebcore_rendering.target.linux-arm.mk169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
Dcore.gypi1625 'rendering/style/QuotesData.cpp',
1626 'rendering/style/QuotesData.h',