HomeSort by relevance Sort by last modified time
    Searched refs:StyleImage (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ElementStyleResources.h 40 class StyleImage;
53 PassRefPtr<StyleImage> styleImage(const TextLinkColors&, Color currentColor, CSSPropertyID, CSSValue*);
55 PassRefPtr<StyleImage> generatedOrPendingFromValue(CSSPropertyID, CSSImageGeneratorValue*);
56 PassRefPtr<StyleImage> cachedOrPendingFromValue(CSSPropertyID, CSSImageValue*);
57 PassRefPtr<StyleImage> setOrPendingFromValue(CSSPropertyID, CSSImageSetValue*);
58 PassRefPtr<StyleImage> cursorOrPendingFromValue(CSSPropertyID, CSSCursorImageValue*);
ElementStyleResources.cpp 29 #include "core/rendering/style/StyleImage.h"
41 PassRefPtr<StyleImage> ElementStyleResources::styleImage(const TextLinkColors& textLinkColors, Color currentColor, CSSPropertyID property, CSSValue* value)
61 PassRefPtr<StyleImage> ElementStyleResources::generatedOrPendingFromValue(CSSPropertyID property, CSSImageGeneratorValue* value)
70 PassRefPtr<StyleImage> ElementStyleResources::setOrPendingFromValue(CSSPropertyID property, CSSImageSetValue* value)
72 RefPtr<StyleImage> image = value->cachedOrPendingImageSet(m_deviceScaleFactor);
78 PassRefPtr<StyleImage> ElementStyleResources::cachedOrPendingFromValue(CSSPropertyID property, CSSImageValue* value)
80 RefPtr<StyleImage> image = value->cachedOrPendingImage();
86 PassRefPtr<StyleImage> ElementStyleResources::cursorOrPendingFromValue(CSSPropertyID property, CSSCursorImageValue* value)
88 RefPtr<StyleImage> image = value->cachedOrPendingImage(m_deviceScaleFactor)
    [all...]
StyleResourceLoader.h 35 class StyleImage;
55 PassRefPtr<StyleImage> loadPendingImage(StylePendingImage*, float deviceScaleFactor);
CSSToStyleMap.h 36 class StyleImage;
82 PassRefPtr<StyleImage> styleImage(CSSPropertyID, CSSValue*);
StyleResourceLoader.cpp 80 PassRefPtr<StyleImage> StyleResourceLoader::loadPendingImage(StylePendingImage* pendingImage, float deviceScaleFactor)
111 StyleImage* image = shapeValue->image();
144 StyleImage* image = static_cast<ImageContentData*>(contentData)->image();
146 RefPtr<StyleImage> loadedImage = loadPendingImage(toStylePendingImage(image), elementStyleResources.deviceScaleFactor());
158 if (StyleImage* image = currentCursor.image()) {
180 RefPtr<StyleImage> loadedImage = loadPendingImage(toStylePendingImage(maskImage.image()), elementStyleResources.deviceScaleFactor());
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableImage.h 36 #include "core/rendering/style/StyleImage.h"
43 static PassRefPtr<AnimatableImage> create(StyleImage* image)
48 StyleImage* toStyleImage() const { return m_image.get(); }
55 AnimatableImage(StyleImage* image)
63 const RefPtr<StyleImage> m_image;
AnimatableImage.cpp 78 return StyleImage::imagesEquivalent(m_image.get(), toAnimatableImage(value)->m_image.get());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
CursorData.h 28 #include "core/rendering/style/StyleImage.h"
35 CursorData(PassRefPtr<StyleImage> image, const IntPoint& hotSpot)
51 StyleImage* image() const { return m_image.get(); }
52 void setImage(PassRefPtr<StyleImage> image) { m_image = image; }
58 RefPtr<StyleImage> m_image;
StyleImage.h 43 class StyleImage : public RefCounted<StyleImage> {
45 virtual ~StyleImage() { }
47 bool operator==(const StyleImage& other) const
76 static bool imagesEquivalent(const StyleImage* image1, const StyleImage* image2)
87 StyleImage()
101 DEFINE_TYPE_CASTS(thisType, StyleImage, styleImage, styleImage->function, styleImage.function);
    [all...]
ShapeValue.h 36 #include "core/rendering/style/StyleImage.h"
66 static PassRefPtr<ShapeValue> createImageValue(PassRefPtr<StyleImage> image)
74 StyleImage* image() const { return m_image.get(); }
76 void setImage(PassRefPtr<StyleImage> image)
99 ShapeValue(PassRefPtr<StyleImage> image)
114 RefPtr<StyleImage> m_image;
ContentData.h 29 #include "core/rendering/style/StyleImage.h"
42 static PassOwnPtr<ContentData> create(PassRefPtr<StyleImage>);
72 const StyleImage* image() const { return m_image.get(); }
73 StyleImage* image() { return m_image.get(); }
74 void setImage(PassRefPtr<StyleImage> image) { m_image = image; }
87 ImageContentData(PassRefPtr<StyleImage> image)
94 RefPtr<StyleImage> image = const_cast<StyleImage*>(this->image());
98 RefPtr<StyleImage> m_image;
StyleRareInheritedData.h 41 class StyleImage;
59 RefPtr<StyleImage> listStyleImage;
NinePieceImage.h 29 #include "core/rendering/style/StyleImage.h"
50 RefPtr<StyleImage> image;
63 NinePieceImage(PassRefPtr<StyleImage>, LengthBox imageSlices, bool fill, const BorderImageLengthBox& borderSlices,
70 StyleImage* image() const { return m_data->image.get(); }
71 void setImage(PassRefPtr<StyleImage> image) { m_data.access()->image = image; }
StyleFetchedImage.h 29 #include "core/rendering/style/StyleImage.h"
35 class StyleFetchedImage : public StyleImage, private ImageResourceClient {
StyleGeneratedImage.h 27 #include "core/rendering/style/StyleImage.h"
34 class StyleGeneratedImage : public StyleImage {
NinePieceImage.cpp 42 NinePieceImage::NinePieceImage(PassRefPtr<StyleImage> image, LengthBox imageSlices, bool fill, const BorderImageLengthBox& borderSlices, const BorderImageLengthBox& outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule)
79 return StyleImage::imagesEquivalent(image.get(), other.image.get())
FillLayer.h 29 #include "core/rendering/style/StyleImage.h"
68 StyleImage* image() const { return m_image.get(); }
103 void setImage(PassRefPtr<StyleImage> i) { m_image = i; m_imageSet = true; }
153 bool containsImage(StyleImage*) const;
191 static StyleImage* initialFillImage(EFillLayerType) { return 0; }
203 RefPtr<StyleImage> m_image;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImageValue.h 32 class StyleImage;
38 static PassRefPtr<CSSImageValue> create(const String& url, StyleImage* image) { return adoptRef(new CSSImageValue(url, image)); }
44 StyleImage* cachedOrPendingImage();
62 CSSImageValue(const String& url, StyleImage*);
65 RefPtr<StyleImage> m_image;
CSSCursorImageValue.h 54 StyleImage* cachedImage(ResourceFetcher*, float deviceScaleFactor);
55 StyleImage* cachedOrPendingImage(float deviceScaleFactor);
72 RefPtr<StyleImage> m_image;
CSSImageSetValue.h 35 class StyleImage;
49 StyleImage* cachedOrPendingImageSet(float);
74 RefPtr<StyleImage> m_imageSet;
CSSImageValue.cpp 42 CSSImageValue::CSSImageValue(const String& url, StyleImage* image)
54 StyleImage* CSSImageValue::cachedOrPendingImage()
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
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;
RenderImageResourceStyleImage.cpp 37 RenderImageResourceStyleImage::RenderImageResourceStyleImage(StyleImage* styleImage)
38 : m_styleImage(styleImage)
RenderListMarker.h 85 RefPtr<StyleImage> m_image;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.h 34 #include "core/rendering/style/StyleImage.h"
64 static PassOwnPtr<Shape> createShape(const StyleImage*, float threshold, const LayoutSize& logicalBoxSize, WritingMode, Length margin, Length padding);

Completed in 69 milliseconds

1 2