Searched refs:QuotesData (Results 1 – 17 of 17) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | QuotesData.cpp | 27 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()
|
D | QuotesData.h | 32 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
|
D | StyleRareInheritedData.h | 39 class QuotesData; variable 116 RefPtr<QuotesData> quotes;
|
D | StyleVariableData.h | 43 class QuotesData; variable
|
D | StyleRareInheritedData.cpp | 209 && QuotesData::equals(quotes.get(), o.quotes.get()) in operator ==()
|
D | RenderStyle.cpp | 583 … 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()
|
D | RenderStyle.h | 1466 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/ |
D | RenderQuote.cpp | 75 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()
|
D | RenderQuote.h | 51 const QuotesData* quotesData() const;
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | StyleBuilderCustom.cpp | 1305 RefPtr<QuotesData> quotes = QuotesData::create(); in oldApplyProperty() 1321 state.style()->setQuotes(QuotesData::create()); in oldApplyProperty()
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_rendering.target.linux-mips.mk | 169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.darwin-x86.mk | 169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.darwin-mips.mk | 169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.darwin-arm.mk | 169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.linux-x86.mk | 169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.linux-arm.mk | 169 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | core.gypi | 1625 'rendering/style/QuotesData.cpp', 1626 'rendering/style/QuotesData.h',
|