Home
last modified time | relevance | path

Searched refs:styleImage (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DStyleImage.h101 … DEFINE_TYPE_CASTS(thisType, StyleImage, styleImage, styleImage->function, styleImage.function); \
102 …line thisType* to##thisType(const RefPtr<StyleImage>& styleImage) { return to##thisType(styleImage
DStyleRareInheritedData.cpp35 void* styleImage; member
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderImageResourceStyleImage.cpp37 RenderImageResourceStyleImage::RenderImageResourceStyleImage(StyleImage* styleImage) in RenderImageResourceStyleImage() argument
38 : m_styleImage(styleImage) in RenderImageResourceStyleImage()
DRenderImageResourceStyleImage.h41 static PassOwnPtr<RenderImageResource> create(StyleImage* styleImage) in create() argument
43 return adoptPtr(new RenderImageResourceStyleImage(styleImage)); in create()
DRenderBoxModelObject.cpp1160 StyleImage* styleImage = ninePieceImage.image(); in paintNinePieceImage() local
1161 if (!styleImage) in paintNinePieceImage()
1164 if (!styleImage->isLoaded()) in paintNinePieceImage()
1167 if (!styleImage->canRender(this, style->effectiveZoom())) in paintNinePieceImage()
1176 …IntSize imageSize = calculateImageIntrinsicDimensions(styleImage, borderImageRect.size(), DoNotSca… in paintNinePieceImage()
1179 styleImage->setContainerSizeForRenderer(this, imageSize, style->effectiveZoom()); in paintNinePieceImage()
1185 float imageScaleFactor = styleImage->imageScaleFactor(); in paintNinePieceImage()
1220 RefPtr<Image> image = styleImage->image(this, imageSize); in paintNinePieceImage()
DRenderBlock.cpp175 …tic void appendImageIfNotNull(Vector<ImageResource*>& imageResources, const StyleImage* styleImage) in appendImageIfNotNull() argument
177 if (styleImage && styleImage->cachedImage()) in appendImageIfNotNull()
178 imageResources.append(styleImage->cachedImage()); in appendImageIfNotNull()
DRenderObject.cpp155 … if (const StyleImage* styleImage = static_cast<const ImageContentData*>(contentData)->image()) { in createObject() local
156 …mage->setImageResource(RenderImageResourceStyleImage::create(const_cast<StyleImage*>(styleImage))); in createObject()
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DShape.cpp215 PassOwnPtr<Shape> Shape::createShape(const StyleImage* styleImage, float threshold, const LayoutSiz… in createShape() argument
217 …ASSERT(styleImage && styleImage->isImageResource() && styleImage->cachedImage() && styleImage->cac… in createShape()
219 Image* image = styleImage->cachedImage()->image(); in createShape()
/external/chromium_org/third_party/WebKit/Source/core/page/
DPageSerializer.cpp353 StyleImage* styleImage = imageValue->cachedOrPendingImage(); in retrieveResourcesForCSSValue() local
355 if (!styleImage || !styleImage->isImageResource()) in retrieveResourcesForCSSValue()
358 addImageToResources(styleImage->cachedImage(), 0, styleImage->cachedImage()->url()); in retrieveResourcesForCSSValue()
DEventHandler.cpp1154 StyleImage* styleImage = (*cursors)[i].image(); in selectCursor() local
1155 if (!styleImage) in selectCursor()
1157 ImageResource* cachedImage = styleImage->cachedImage(); in selectCursor()
1160 float scale = styleImage->imageScaleFactor(); in selectCursor()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleResolverState.h108 PassRefPtr<StyleImage> styleImage(CSSPropertyID propertyId, CSSValue* value) in styleImage() function
110 …return m_elementStyleResources.styleImage(document().textLinkColors(), style()->color(), propertyI… in styleImage()
DElementStyleResources.h53 …PassRefPtr<StyleImage> styleImage(const TextLinkColors&, Color currentColor, CSSPropertyID, CSSVal…
DCSSToStyleMap.h82 PassRefPtr<StyleImage> styleImage(CSSPropertyID, CSSValue*);
DCSSToStyleMap.cpp55 PassRefPtr<StyleImage> CSSToStyleMap::styleImage(CSSPropertyID propertyId, CSSValue* value) in styleImage() function in WebCore::CSSToStyleMap
57 …return m_elementStyleResources.styleImage(m_state.document().textLinkColors(), m_state.style()->co… in styleImage()
150 layer->setImage(styleImage(property, value)); in mapFillImage()
528 image.setImage(styleImage(imageProperty, current)); in mapNinePieceImage()
DElementStyleResources.cpp41 PassRefPtr<StyleImage> ElementStyleResources::styleImage(const TextLinkColors& textLinkColors, Colo… in styleImage() function in WebCore::ElementStyleResources
DStyleBuilderCustom.cpp154 … state.style()->addCursor(state.styleImage(CSSPropertyCursor, image), image->hotSpot()); in applyValueCSSPropertyCursor()
299 state.style()->setListStyleImage(state.styleImage(CSSPropertyListStyleImage, value)); in applyValueCSSPropertyListStyleImage()
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DStyleBuilderFunctions.cpp.tmpl230 {{ set_value(property) }}(state.styleImage({{property_id}}, value));
505 … {{ set_value(property) }}(ShapeValue::createImageValue(state.styleImage({{property_id}}, value)));