HomeSort by relevance Sort by last modified time
    Searched refs:cssValue (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSValueTestHelper.h 40 #include "core/css/CSSValue.h"
52 char(&IsNullLiteralHelper(const blink::CSSValue&))[2];
59 inline bool operator==(const CSSValue& a, const CSSValue& b)
64 inline void PrintTo(const CSSValue& cssValue, ::std::ostream* os, const char* typeName = "CSSValue")
66 *os << typeName << "(" << cssValue.cssText().utf8().data() << ")";
69 inline void PrintTo(const CSSPrimitiveValue& cssValue, ::std::ostream* os, const char* typeName = "CSSPrimitiveValue")
71 PrintTo(static_cast<const CSSValue&>(cssValue), os, typeName)
    [all...]
WebKitCSSMatrix.idl 28 Constructor(optional DOMString cssValue = null),
CSSComputedStyleDeclaration.cpp 502 static PassRefPtrWillBeRawPtr<CSSValue> valueForNinePieceImageRepeat(const NinePieceImage& image)
515 static PassRefPtrWillBeRawPtr<CSSValue> valueForNinePieceImage(const NinePieceImage& image, const RenderStyle& style)
521 RefPtrWillBeRawPtr<CSSValue> imageValue = nullptr;
523 imageValue = image.image()->cssValue();
529 RefPtrWillBeRawPtr<CSSValue> borderSlices = valueForNinePieceImageQuad(image.borderSlices(), style);
532 RefPtrWillBeRawPtr<CSSValue> outset = valueForNinePieceImageQuad(image.outset(), style);
535 RefPtrWillBeRawPtr<CSSValue> repeat = valueForNinePieceImageRepeat(image);
557 static PassRefPtrWillBeRawPtr<CSSValue> valueForReflection(const StyleReflection* reflection, const RenderStyle& style)
603 static PassRefPtrWillBeRawPtr<CSSValue> valueForPositionOffset(RenderStyle& style, CSSPropertyID propertyID, const RenderObject* renderer)
659 static PassRefPtrWillBeRawPtr<CSSValue> valueForBorderRadiusCorner(LengthSize radius, const RenderStyle& style
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableUnknownTest.cpp 47 cssValue = cssValuePool().createIdentifierValue(CSSValueYellow);
48 animatableUnknown = AnimatableUnknown::create(cssValue);
54 RefPtrWillBePersistent<CSSValue> cssValue;
56 RefPtrWillBePersistent<CSSValue> otherCSSValue;
67 EXPECT_EQ(cssValue, toAnimatableUnknown(animatableUnknown.get())->toCSSValue());
72 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(animatableUnknown.get(), otherAnimatableUnknown.get(), 0).get())->toCSSValue());
73 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(animatableUnknown.get(), otherAnimatableUnknown.get(), 0.4).get())->toCSSValue());
80 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(otherAnimatableUnknown.get(), animatableUnknown.get(), 0.5).get())->toCSSValue());
81 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(otherAnimatableUnknown.get(), animatableUnknown. (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleGeneratedImage.h 31 class CSSValue;
43 virtual PassRefPtrWillBeRawPtr<CSSValue> cssValue() const OVERRIDE;
StyleFetchedImage.cpp 45 PassRefPtrWillBeRawPtr<CSSValue> StyleFetchedImage::cssValue() const
StyleFetchedImage.h 43 virtual PassRefPtrWillBeRawPtr<CSSValue> cssValue() const OVERRIDE;
StyleFetchedImageSet.cpp 50 PassRefPtrWillBeRawPtr<CSSValue> StyleFetchedImageSet::cssValue() const
StyleFetchedImageSet.h 50 virtual PassRefPtrWillBeRawPtr<CSSValue> cssValue() const OVERRIDE;
StyleGeneratedImage.cpp 40 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::cssValue() const
StyleImage.h 27 #include "core/css/CSSValue.h"
38 class CSSValue;
52 virtual PassRefPtrWillBeRawPtr<CSSValue> cssValue() const = 0;
StylePendingImage.h 44 static PassRefPtr<StylePendingImage> create(CSSValue* value) { return adoptRef(new StylePendingImage(value)); }
48 virtual PassRefPtrWillBeRawPtr<CSSValue> cssValue() const OVERRIDE { return m_value; }
70 StylePendingImage(CSSValue* value)
76 CSSValue* m_value; // Not retained; it owns us.
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
ReferenceFilterBuilder.cpp 88 RefPtrWillBeRawPtr<CSSValue> cssValue = svgElement->presentationAttributeStyle()->getPropertyCSSValue(CSSPropertyColorInterpolationFilters);
89 if (cssValue.get() && cssValue->isPrimitiveValue()) {
90 const CSSPrimitiveValue& primitiveValue = *((CSSPrimitiveValue*)cssValue.get());
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 351 RefPtrWillBeRawPtr<CSSValue> cssValue = styleDeclaration->propertyAt(i).value();
352 retrieveResourcesForCSSValue(cssValue.get(), document);
356 void PageSerializer::retrieveResourcesForCSSValue(CSSValue* cssValue, Document& document)
358 if (cssValue->isImageValue()) {
359 CSSImageValue* imageValue = toCSSImageValue(cssValue);
366 } else if (cssValue->isFontFaceSrcValue()) {
367 CSSFontFaceSrcValue* fontFaceSrcValue = toCSSFontFaceSrcValue(cssValue);
373 } else if (cssValue->isValueList())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
SizesCalcParserTest.cpp 37 RefPtrWillBeRawPtr<CSSValue> cssValue = CSSParser::parseSingleValue(CSSPropertyLeft, text);
38 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(cssValue.get());
CSSPropertyParser.cpp 133 void CSSPropertyParser::addPropertyWithPrefixingVariant(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> value, bool important, bool implicit)
135 RefPtrWillBeRawPtr<CSSValue> val = value.get();
152 void CSSPropertyParser::addProperty(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> value, bool important, bool implicit)
340 inline PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::createCSSImageValueWithReferrer(const String& rawValue, const KURL& url)
342 RefPtrWillBeRawPtr<CSSValue> imageValue = CSSImageValue::create(rawValue, url);
414 void CSSPropertyParser::addExpandedPropertyForValue(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> prpValue, bool important)
423 RefPtrWillBeRawPtr<CSSValue> value = prpValue;
486 RefPtrWillBeRawPtr<CSSValue> parsedValue = nullptr;
518 RefPtrWillBeRawPtr<CSSValue> overflowXValue = nullptr;
551 CSSValue* value = m_parsedProperties.last().value()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8CSSStyleDeclarationCustom.cpp 40 #include "core/css/CSSValue.h"
206 RefPtrWillBeRawPtr<CSSValue> cssValue = impl->getPropertyCSSValueInternal(static_cast<CSSPropertyID>(propInfo->propID));
207 if (cssValue) {
208 v8SetReturnValueStringOrNull(info, cssValue->cssText(), info.GetIsolate());
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FilterOperationResolver.cpp 72 bool FilterOperationResolver::createFilterOperations(CSSValue* inValue, const CSSToLengthConversionData& unadjustedConversionData, FilterOperations& outOperations, StyleResolverState& state)
92 CSSValue* currValue = i.value();
102 CSSValue* argument = filterValue->item(0);
183 CSSValue* cssValue = filterValue->item(0);
184 if (!cssValue->isShadowValue())
187 CSSShadowValue* item = toCSSShadowValue(cssValue);
AnimatedStyleBuilder.cpp 71 RefPtrWillBeRawPtr<CSSValue> cssValue = toAnimatableUnknown(value)->toCSSValue();
72 CSSPrimitiveValue* cssPrimitiveValue = toCSSPrimitiveValue(cssValue.get());
82 RefPtrWillBeRawPtr<CSSValue> cssValue = toAnimatableUnknown(value)->toCSSValue();
83 CSSPrimitiveValue* cssPrimitiveValue = toCSSPrimitiveValue(cssValue.get());
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 152 static bool isTransparentColorValue(CSSValue*);
155 static PassRefPtrWillBeRawPtr<CSSValue> backgroundColorInEffect(Node*);
207 RefPtrWillBeRawPtr<CSSValue> value = style->getPropertyCSSValue(m_propertyID);
245 RefPtrWillBeRawPtr<CSSValue> styleValue = style->getPropertyCSSValue(CSSPropertyWebkitTextDecorationsInEffect);
266 virtual PassRefPtrWillBeRawPtr<CSSValue> attributeValueAsCSSValue(Element*) const;
291 RefPtrWillBeRawPtr<CSSValue> value = attributeValueAsCSSValue(element);
292 RefPtrWillBeRawPtr<CSSValue> styleValue = style->getPropertyCSSValue(m_propertyID);
299 if (RefPtrWillBeRawPtr<CSSValue> value = attributeValueAsCSSValue(element))
303 PassRefPtrWillBeRawPtr<CSSValue> HTMLAttributeEquivalent::attributeValueAsCSSValue(Element* element) const
322 virtual PassRefPtrWillBeRawPtr<CSSValue> attributeValueAsCSSValue(Element*) const OVERRIDE
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp 158 if (RefPtrWillBeRawPtr<CSSValue> cssValue = image->cssValue())
159 return AnimatableImage::create(cssValue.release());

Completed in 1457 milliseconds