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;
RenderBoxModelObject.cpp 537 StyleImage* bgImage = bgLayer->image();
    [all...]
RenderBlock.cpp 186 static void appendImageIfNotNull(Vector<ImageResource*>& imageResources, const StyleImage* styleImage)
188 if (styleImage && styleImage->cachedImage()) {
189 ImageResource* imageResource = styleImage->cachedImage();
191 imageResources.append(styleImage->cachedImage());
    [all...]
RenderObject.cpp 162 if (const StyleImage* styleImage = static_cast<const ImageContentData*>(contentData)->image()) {
163 image->setImageResource(RenderImageResourceStyleImage::create(const_cast<StyleImage*>(styleImage)));
844 StyleImage* borderImage = style()->borderImage().image();
855 StyleImage* img = layer.image();
892 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*);
CSSToStyleMap.h 39 class StyleImage;
84 PassRefPtr<StyleImage> styleImage(CSSPropertyID, CSSValue*);
StyleResolverState.h 116 // FIXME: Once styleImage can be made to not take a StyleResolverState
119 PassRefPtr<StyleImage> styleImage(CSSPropertyID propertyId, CSSValue* value)
121 return m_elementStyleResources.styleImage(document(), document().textLinkColors(), style()->color(), propertyId, value);
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 178 fillLayer->setImage(state.styleImage(property, toAnimatableImage(layerValue)->toCSSValue()));
301 style->setBorderImageSource(state.styleImage(property, toAnimatableImage(value)->toCSSValue()));
395 style->setListStyleImage(state.styleImage(property, toAnimatableImage(value)->toCSSValue()));
539 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);
145 layer->setImage(styleImage(property, value));
461 image.setImage(styleImage(imageProperty, current));
StyleBuilderCustom.cpp 231 state.style()->addCursor(state.styleImage(CSSPropertyCursor, image), image->hotSpot());
407 state.style()->setListStyleImage(state.styleImage(CSSPropertyListStyleImage, value));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.cpp 83 static bool checkShapeImageOrigin(Document& document, const StyleImage& styleImage)
85 if (styleImage.isGeneratedImage())
88 ASSERT(styleImage.cachedImage());
89 ImageResource& imageResource = *(styleImage.cachedImage());
107 PassOwnPtr<Shape> ShapeOutsideInfo::createShapeForImage(StyleImage* styleImage, float shapeImageThreshold, WritingMode writingMode, float margin) const
109 const IntSize& imageSize = m_renderer.calculateImageIntrinsicDimensions(styleImage, roundedIntSize(m_referenceBoxLogicalSize), RenderImage::ScaleByEffectiveZoom);
110 styleImage->setContainerSizeForRenderer(&m_renderer, imageSize, m_renderer.style()->effectiveZoom());
117 ASSERT(!styleImage->isPendingImage())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 62 #include "core/rendering/style/StyleImage.h"
361 StyleImage* styleImage = imageValue->cachedOrPendingImage();
363 if (!styleImage || !styleImage->isImageResource())
366 addImageToResources(styleImage->cachedImage(), 0, styleImage->cachedImage()->url());
EventHandler.cpp     [all...]

Completed in 441 milliseconds