Searched refs:m_altText (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderTextFragment.h58 const String& altText() const { return m_altText; }
59 void setAltText(const String& altText) { m_altText = altText; }
70 String m_altText; member in class:WebCore::final
H A DRenderImage.h61 const String& altText() const { return m_altText; }
62 void setAltText(const String& altText) { m_altText = altText; }
120 String m_altText; member in class:WebCore::RenderImage
H A DRenderImage.cpp188 else if (!m_altText.isEmpty() || newImage) {
194 if (!m_altText.isEmpty()) {
198 IntSize paddedTextSize(paddingWidth + std::min(ceilf(font.width(RenderBlock::constructTextRun(this, font, m_altText, style()))), maxAltTextWidth), paddingHeight + std::min(font.fontMetrics().height(), maxAltTextHeight));
213 if (!m_altText.isEmpty() && setImageSizeForAltText(imageResource().cachedImage()))
255 if (!m_altText.isEmpty() && document().hasPendingStyleRecalc()) {
446 if (!m_altText.isEmpty()) {
447 String text = document().displayStringModifiedByEncoding(m_altText);
659 m_altText = toHTMLInputElement(element())->altText();
661 m_altText = toHTMLImageElement(element())->altText();
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DContentData.h63 void setAltText(const String& alt) { m_altText = alt; }
64 const String& altText() const { return m_altText; }
76 String m_altText; member in class:WebCore::ContentData
H A DStyleRareNonInheritedData.h129 String m_altText; member in class:WebCore::StyleRareNonInheritedData
H A DRenderStyle.cpp891 if (!rareNonInheritedData.access()->m_altText.isNull())
892 rareNonInheritedData.access()->m_content->setAltText(rareNonInheritedData.access()->m_altText);
911 if (!rareNonInheritedData.access()->m_altText.isNull())
912 lastContent->setAltText(rareNonInheritedData.access()->m_altText);
918 if (!rareNonInheritedData.access()->m_altText.isNull())
919 content->setAltText(rareNonInheritedData.access()->m_altText);
947 rareNonInheritedData.access()->m_altText = string;
955 return rareNonInheritedData->m_altText;

Completed in 125 milliseconds