/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()
|
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); 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
|
D | StyleRareInheritedData.h | 41 class QuotesData; variable 146 RefPtr<QuotesData> quotes;
|
D | RenderStyle.h | 1495 QuotesData* quotes() const { return rareInheritedData->quotes.get(); } in quotes() 1496 void setQuotes(PassRefPtr<QuotesData>); 1720 static QuotesData* initialQuotes() { return 0; } in initialQuotes()
|
D | RenderStyle.cpp | 720 void RenderStyle::setQuotes(PassRefPtr<QuotesData> q) in setQuotes()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderQuote.cpp | 82 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()
|
D | RenderQuote.h | 52 const QuotesData* quotesData() const;
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | StyleBuilderConverter.cpp | 503 PassRefPtr<QuotesData> StyleBuilderConverter::convertQuotes(StyleResolverState&, CSSValue* value) in convertQuotes() 507 RefPtr<QuotesData> quotes = QuotesData::create(); in convertQuotes() 518 return QuotesData::create(); in convertQuotes()
|
D | StyleBuilderConverter.h | 67 static PassRefPtr<QuotesData> convertQuotes(StyleResolverState&, CSSValue*);
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_rendering.target.darwin-mips.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.linux-arm64.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.darwin-mips64.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.linux-mips.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.darwin-x86_64.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.linux-x86_64.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.linux-mips64.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.darwin-arm64.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.darwin-x86.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.darwin-arm.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.linux-x86.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | webcore_rendering.target.linux-arm.mk | 174 third_party/WebKit/Source/core/rendering/style/QuotesData.cpp \
|
D | core.gypi | 1821 'rendering/style/QuotesData.cpp', 1822 'rendering/style/QuotesData.h',
|