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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleImage.h 43 class StyleImage : public RefCounted<StyleImage> {
45 virtual ~StyleImage() { }
47 bool operator==(const StyleImage& other) const
77 StyleImage()
91 DEFINE_TYPE_CASTS(thisType, StyleImage, styleImage, styleImage->function, styleImage.function); \
92 inline thisType* to##thisType(const RefPtr<StyleImage>& styleImage) { return to##thisType(styleImage.get()); }
    [all...]
StyleRareInheritedData.cpp 32 #include "core/rendering/style/StyleImage.h"
37 void* styleImage;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImageResourceStyleImage.cpp 37 RenderImageResourceStyleImage::RenderImageResourceStyleImage(StyleImage* styleImage)
38 : m_styleImage(styleImage)
RenderImageResourceStyleImage.h 30 #include "core/rendering/style/StyleImage.h"
41 static PassOwnPtr<RenderImageResource> create(StyleImage* styleImage)
43 return adoptPtr(new RenderImageResourceStyleImage(styleImage));
63 RenderImageResourceStyleImage(StyleImage*);
64 RefPtr<StyleImage> m_styleImage;
RenderBlock.cpp 187 static void appendImageIfNotNull(Vector<ImageResource*>& imageResources, const StyleImage* styleImage)
189 if (styleImage && styleImage->cachedImage()) {
190 ImageResource* imageResource = styleImage->cachedImage();
192 imageResources.append(styleImage->cachedImage());
    [all...]
RenderObject.cpp 177 if (const StyleImage* styleImage = toImageContentData(contentData)->image()) {
178 image->setImageResource(RenderImageResourceStyleImage::create(const_cast<StyleImage*>(styleImage)));
865 StyleImage* borderImage = style()->borderImage().image();
876 StyleImage* img = layer.image();
913 StyleImage* img = layer.image();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ElementStyleResources.h 41 class StyleImage;
55 PassRefPtr<StyleImage> styleImage(Document&, const TextLinkColors&, Color currentColor, CSSPropertyID, CSSValue*);
57 PassRefPtr<StyleImage> generatedOrPendingFromValue(CSSPropertyID, CSSImageGeneratorValue*);
58 PassRefPtr<StyleImage> cachedOrPendingFromValue(Document&, CSSPropertyID, CSSImageValue*);
59 PassRefPtr<StyleImage> setOrPendingFromValue(CSSPropertyID, CSSImageSetValue*);
60 PassRefPtr<StyleImage> cursorOrPendingFromValue(CSSPropertyID, CSSCursorImageValue*);
StyleResolverState.h 113 // FIXME: Once styleImage can be made to not take a StyleResolverState
116 PassRefPtr<StyleImage> styleImage(CSSPropertyID propertyId, CSSValue* value)
118 return m_elementStyleResources.styleImage(document(), document().textLinkColors(), style()->color(), propertyId, value);
CSSToStyleMap.h 39 class StyleImage;
84 PassRefPtr<StyleImage> styleImage(CSSPropertyID, CSSValue*);
ElementStyleResources.cpp 29 #include "core/rendering/style/StyleImage.h"
40 PassRefPtr<StyleImage> ElementStyleResources::styleImage(Document& document, const TextLinkColors& textLinkColors, Color currentColor, CSSPropertyID property, CSSValue* value)
60 PassRefPtr<StyleImage> ElementStyleResources::generatedOrPendingFromValue(CSSPropertyID property, CSSImageGeneratorValue* value)
69 PassRefPtr<StyleImage> ElementStyleResources::setOrPendingFromValue(CSSPropertyID property, CSSImageSetValue* value)
71 RefPtr<StyleImage> image = value->cachedOrPendingImageSet(m_deviceScaleFactor);
77 PassRefPtr<StyleImage> ElementStyleResources::cachedOrPendingFromValue(Document& document, CSSPropertyID property, CSSImageValue* value)
79 RefPtr<StyleImage> image = value->cachedOrPendingImage();
89 PassRefPtr<StyleImage> ElementStyleResources::cursorOrPendingFromValue(CSSPropertyID property, CSSCursorImageValue* value)
91 RefPtr<StyleImage> image = value->cachedOrPendingImage(m_deviceScaleFactor)
    [all...]
AnimatedStyleBuilder.cpp 160 fillLayer->setImage(state.styleImage(property, toAnimatableImage(layerValue)->toCSSValue()));
303 style->setBorderImageSource(state.styleImage(property, toAnimatableImage(value)->toCSSValue()));
399 style->setListStyleImage(state.styleImage(property, toAnimatableImage(value)->toCSSValue()));
543 style->setMaskBoxImageSource(state.styleImage(property, toAnimatableImage(value)->toCSSValue()));
CSSToStyleMap.cpp 50 PassRefPtr<StyleImage> CSSToStyleMap::styleImage(CSSPropertyID propertyId, CSSValue* value)
52 return m_elementStyleResources.styleImage(m_state.document(), m_state.document().textLinkColors(), m_state.style()->color(), propertyId, value);
146 layer->setImage(styleImage(property, value));
458 image.setImage(styleImage(imageProperty, current));
StyleBuilderCustom.cpp 217 state.style()->addCursor(state.styleImage(CSSPropertyCursor, image), image->hotSpot());
325 state.style()->setListStyleImage(state.styleImage(CSSPropertyListStyleImage, value));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.cpp 85 static bool checkShapeImageOrigin(Document& document, const StyleImage& styleImage)
87 if (styleImage.isGeneratedImage())
90 ASSERT(styleImage.cachedImage());
91 ImageResource& imageResource = *(styleImage.cachedImage());
119 PassOwnPtr<Shape> ShapeOutsideInfo::createShapeForImage(StyleImage* styleImage, float shapeImageThreshold, WritingMode writingMode, float margin) const
121 const IntSize& imageSize = m_renderer.calculateImageIntrinsicDimensions(styleImage, roundedIntSize(m_referenceBoxLogicalSize), RenderImage::ScaleByEffectiveZoom);
122 styleImage->setContainerSizeForRenderer(&m_renderer, imageSize, m_renderer.style()->effectiveZoom());
134 ASSERT(!styleImage->isPendingImage())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 63 #include "core/rendering/style/StyleImage.h"
360 StyleImage* styleImage = imageValue->cachedOrPendingImage();
362 if (!styleImage || !styleImage->isImageResource())
365 addImageToResources(styleImage->cachedImage(), 0, styleImage->cachedImage()->url());
EventHandler.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxPainter.cpp 291 StyleImage* bgImage = bgLayer.image();
513 StyleImage* maskBoxImage = m_renderBox.style()->maskBoxImage().image();
    [all...]

Completed in 198 milliseconds