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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImageValue.h 38 class CSSImageValue : public CSSValue {
40 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const KURL& url, StyleImage* image = 0)
42 return adoptRefWillBeNoop(new CSSImageValue(url, url, image));
44 static PassRefPtrWillBeRawPtr<CSSImageValue> create(const String& rawValue, const KURL& url, StyleImage* image = 0)
46 return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image));
48 ~CSSImageValue();
68 bool equals(const CSSImageValue&) const;
78 CSSImageValue(const String& rawValue, const KURL&, StyleImage*);
88 DEFINE_CSS_VALUE_TYPE_CASTS(CSSImageValue, isImageValue());
CSSImageValue.cpp 22 #include "core/css/CSSImageValue.h"
36 CSSImageValue::CSSImageValue(const String& rawValue, const KURL& url, StyleImage* image)
45 CSSImageValue::~CSSImageValue()
49 StyleImage* CSSImageValue::cachedOrPendingImage()
57 StyleFetchedImage* CSSImageValue::cachedImage(ResourceFetcher* fetcher, const ResourceLoaderOptions& options)
77 void CSSImageValue::restoreCachedResourceIfNeeded(Document& document)
92 bool CSSImageValue::hasFailedOrCanceledSubresources() const
101 bool CSSImageValue::equals(const CSSImageValue& other) cons
    [all...]
CSSCursorImageValue.cpp 133 // to change the URL of the CSSImageValue (which would then change behavior like cssText),
134 // we create an alternate CSSImageValue to use.
136 RefPtrWillBeRawPtr<CSSImageValue> imageValue = toCSSImageValue(m_imageValue.get());
139 RefPtrWillBeRawPtr<CSSImageValue> svgImageValue = CSSImageValue::create(loader->document()->completeURL(cursorElement->href()->currentValue()->value()));
171 RefPtrWillBeRawPtr<CSSImageValue> imageValue = toCSSImageValue(m_imageValue.get());
CSSImageSetValue.cpp 30 #include "core/css/CSSImageValue.h"
60 CSSImageValue* imageValue = toCSSImageValue(item(i));
CSSValue.cpp 46 #include "core/css/CSSImageValue.h"
167 return compareCSSValues<CSSImageValue>(*this, other);
444 toCSSImageValue(this)->~CSSImageValue();
  /external/chromium_org/third_party/WebKit/Source/core/animation/interpolation/
DeferredLegacyStyleInterpolation.h 14 class CSSImageValue;
33 static bool interpolationRequiresStyleResolve(const CSSImageValue&);
DeferredLegacyStyleInterpolation.cpp 9 #include "core/css/CSSImageValue.h"
109 bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const CSSImageValue& imageValue)
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ElementStyleResources.h 35 class CSSImageValue;
58 PassRefPtr<StyleImage> cachedOrPendingFromValue(Document&, CSSPropertyID, CSSImageValue*);
ElementStyleResources.cpp 77 PassRefPtr<StyleImage> ElementStyleResources::cachedOrPendingFromValue(Document& document, CSSPropertyID property, CSSImageValue* value)
StyleResourceLoader.cpp 28 #include "core/css/CSSImageValue.h"
76 if (CSSImageValue* imageValue = pendingImage->cssImageValue())
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTablePartElement.cpp 31 #include "core/css/CSSImageValue.h"
57 RefPtrWillBeRawPtr<CSSImageValue> imageValue = CSSImageValue::create(url, document().completeURL(url));
HTMLBodyElement.cpp 30 #include "core/css/CSSImageValue.h"
68 RefPtrWillBeRawPtr<CSSImageValue> imageValue = CSSImageValue::create(url, document().completeURL(url));
HTMLTableElement.cpp 33 #include "core/css/CSSImageValue.h"
313 RefPtrWillBeRawPtr<CSSImageValue> imageValue = CSSImageValue::create(url, document().completeURL(url));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleFetchedImage.cpp 27 #include "core/css/CSSImageValue.h"
47 return CSSImageValue::create(m_image->url(), const_cast<StyleFetchedImage*>(this));
StylePendingImage.h 32 #include "core/css/CSSImageValue.h"
49 CSSImageValue* cssImageValue() const { return m_value->isImageValue() ? toCSSImageValue(m_value) : 0; }
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 37 #include "core/css/CSSImageValue.h"
360 CSSImageValue* imageValue = toCSSImageValue(cssValue);
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 144 third_party/WebKit/Source/core/css/CSSImageValue.cpp \
    [all...]
webcore_remaining.target.darwin-arm64.mk 144 third_party/WebKit/Source/core/css/CSSImageValue.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 144 third_party/WebKit/Source/core/css/CSSImageValue.cpp \
    [all...]
webcore_remaining.target.darwin-x86.mk 144 third_party/WebKit/Source/core/css/CSSImageValue.cpp \
    [all...]
webcore_remaining.target.darwin-x86_64.mk 144 third_party/WebKit/Source/core/css/CSSImageValue.cpp \
    [all...]
webcore_remaining.target.linux-arm.mk 144 third_party/WebKit/Source/core/css/CSSImageValue.cpp \
    [all...]
webcore_remaining.target.linux-arm64.mk 144 third_party/WebKit/Source/core/css/CSSImageValue.cpp \
    [all...]
webcore_remaining.target.linux-mips.mk 144 third_party/WebKit/Source/core/css/CSSImageValue.cpp \
    [all...]
webcore_remaining.target.linux-x86.mk 144 third_party/WebKit/Source/core/css/CSSImageValue.cpp \
    [all...]

Completed in 252 milliseconds

1 2