Searched refs:styleImage (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleImage.h101 DEFINE_TYPE_CASTS(thisType, StyleImage, styleImage, styleImage->function, styleImage.function); \
102 inline thisType* to##thisType(const RefPtr<StyleImage>& styleImage) { return to##thisType(styleImage.get()); } \
H A DStyleRareInheritedData.cpp35 void* styleImage; member in struct:WebCore::SameSizeAsStyleRareInheritedData
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderImageResourceStyleImage.cpp37 RenderImageResourceStyleImage::RenderImageResourceStyleImage(StyleImage* styleImage) argument
38 : m_styleImage(styleImage)
H A DRenderImageResourceStyleImage.h41 static PassOwnPtr<RenderImageResource> create(StyleImage* styleImage) argument
43 return adoptPtr(new RenderImageResourceStyleImage(styleImage));
H A DRenderBoxModelObject.cpp1160 StyleImage* styleImage = ninePieceImage.image(); local
1161 if (!styleImage)
1164 if (!styleImage->isLoaded())
1167 if (!styleImage->canRender(this, style->effectiveZoom()))
1176 IntSize imageSize = calculateImageIntrinsicDimensions(styleImage, borderImageRect.size(), DoNotScaleByEffectiveZoom);
1179 styleImage->setContainerSizeForRenderer(this, imageSize, style->effectiveZoom());
1185 float imageScaleFactor = styleImage->imageScaleFactor();
1220 RefPtr<Image> image = styleImage->image(this, imageSize);
H A DRenderBlock.cpp175 static void appendImageIfNotNull(Vector<ImageResource*>& imageResources, const StyleImage* styleImage) argument
177 if (styleImage && styleImage->cachedImage())
178 imageResources.append(styleImage->cachedImage());
H A DRenderObject.cpp155 if (const StyleImage* styleImage = static_cast<const ImageContentData*>(contentData)->image()) {
156 image->setImageResource(RenderImageResourceStyleImage::create(const_cast<StyleImage*>(styleImage)));
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShape.cpp215 PassOwnPtr<Shape> Shape::createShape(const StyleImage* styleImage, float threshold, const LayoutSize&, WritingMode writingMode, Length margin, Length padding) argument
217 ASSERT(styleImage && styleImage->isImageResource() && styleImage->cachedImage() && styleImage->cachedImage()->image());
219 Image* image = styleImage->cachedImage()->image();
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DElementStyleResources.h53 PassRefPtr<StyleImage> styleImage(const TextLinkColors&, Color currentColor, CSSPropertyID, CSSValue*);
H A DStyleResolverState.h105 // FIXME: Once styleImage can be made to not take a StyleResolverState
108 PassRefPtr<StyleImage> styleImage(CSSPropertyID propertyId, CSSValue* value) function in class:WebCore::StyleResolverState
110 return m_elementStyleResources.styleImage(document().textLinkColors(), style()->color(), propertyId, value);
H A DCSSToStyleMap.h82 PassRefPtr<StyleImage> styleImage(CSSPropertyID, CSSValue*);
H A DElementStyleResources.cpp41 PassRefPtr<StyleImage> ElementStyleResources::styleImage(const TextLinkColors& textLinkColors, Color currentColor, CSSPropertyID property, CSSValue* value) function in class:WebCore::ElementStyleResources
H A DCSSToStyleMap.cpp55 PassRefPtr<StyleImage> CSSToStyleMap::styleImage(CSSPropertyID propertyId, CSSValue* value) function in class:WebCore::CSSToStyleMap
57 return m_elementStyleResources.styleImage(m_state.document().textLinkColors(), m_state.style()->color(), propertyId, value);
150 layer->setImage(styleImage(property, value));
528 image.setImage(styleImage(imageProperty, current));
H A DStyleBuilderCustom.cpp154 state.style()->addCursor(state.styleImage(CSSPropertyCursor, image), image->hotSpot());
299 state.style()->setListStyleImage(state.styleImage(CSSPropertyListStyleImage, value));
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageSerializer.cpp353 StyleImage* styleImage = imageValue->cachedOrPendingImage(); local
355 if (!styleImage || !styleImage->isImageResource())
358 addImageToResources(styleImage->cachedImage(), 0, styleImage->cachedImage()->url());
H A DEventHandler.cpp1154 StyleImage* styleImage = (*cursors)[i].image(); local
1155 if (!styleImage)
1157 ImageResource* cachedImage = styleImage->cachedImage();
1160 float scale = styleImage->imageScaleFactor();

Completed in 200 milliseconds