HomeSort by relevance Sort by last modified time
    Searched refs:ContentData (Results 1 - 15 of 15) sorted by null

  /external/webkit/Source/WebCore/rendering/style/
ContentData.cpp 23 #include "ContentData.h"
30 void ContentData::clear()
35 for (OwnPtr<ContentData> next = m_next.release(); next; next = next->m_next.release()) { }
40 bool ContentData::dataEquivalent(const ContentData& other) const
62 void ContentData::deleteContent()
ContentData.h 36 struct ContentData {
37 WTF_MAKE_NONCOPYABLE(ContentData); WTF_MAKE_FAST_ALLOCATED;
39 ContentData()
44 ~ContentData()
59 bool dataEquivalent(const ContentData&) const;
109 ContentData* next() const { return m_next.get(); }
110 void setNext(PassOwnPtr<ContentData> next) { m_next = next; }
122 OwnPtr<ContentData> m_next;
StyleRareNonInheritedData.h 50 struct ContentData;
96 OwnPtr<ContentData> m_content;
StyleRareNonInheritedData.cpp 26 #include "ContentData.h"
153 ContentData* c1 = m_content.get();
154 ContentData* c2 = o.m_content.get();
RenderStyle.cpp 25 #include "ContentData.h"
625 ContentData* RenderStyle::prepareToSetContent(StringImpl* string, bool add)
627 OwnPtr<ContentData>& content = rareNonInheritedData.access()->m_content;
628 ContentData* lastContent = content.get();
633 // Augment the existing string and share the existing ContentData node.
641 OwnPtr<ContentData> newContentData;
646 newContentData = adoptPtr(new ContentData);
648 ContentData* result = newContentData.get();
669 if (ContentData* data = prepareToSetContent(string.get(), add))
    [all...]
RenderStyle.h 104 struct ContentData;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/texmap/
GraphicsLayerTextureMapper.h 89 inline TextureMapperNode::ContentData& pendingContent() { return m_pendingContent; }
97 TextureMapperNode::ContentData m_pendingContent;
TextureMapperNode.h 90 struct ContentData {
99 ContentData()
194 ContentData m_currentContent;
TextureMapperNode.cpp 743 const TextureMapperNode::ContentData& pendingContent = graphicsLayer->pendingContent();
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp 238 struct ContentData {
251 ContentData()
260 ContentData m_pendingContent;
261 ContentData m_currentContent;
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderObjectChildList.cpp 31 #include "ContentData.h"
416 for (const ContentData* content = pseudoElementStyle->contentData(); content; content = content->next()) {
RenderObject.cpp 33 #include "ContentData.h"
115 const ContentData* contentData = style->contentData();
116 if (contentData && !contentData->next() && contentData->isImage() && doc != node) {
119 if (StyleImage* styleImage = contentData->image())
    [all...]
  /external/webkit/Source/WebCore/
Android.mk     [all...]
  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.cpp 28 #include "ContentData.h"
764 for (const ContentData* contentData = style->contentData(); contentData; contentData = contentData->next()) {
765 if (contentData->isCounter()) {
766 const CounterContent* counter = contentData->counter();
769 } else if (contentData->isImage())
    [all...]
CSSStyleSelector.cpp 31 #include "ContentData.h"
    [all...]

Completed in 625 milliseconds