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

  /external/chromium_org/third_party/WebKit/Source/core/animation/
DeferredLegacyStyleInterpolation.cpp 58 bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const CSSPrimitiveValue& primitiveValue)
61 if (primitiveValue.isNumber() || primitiveValue.isPercentage() || primitiveValue.isAngle() || primitiveValue.isRGBColor() || primitiveValue.isURI())
64 if (primitiveValue.isLength())
65 return primitiveValue.isFontRelativeLength() || primitiveValue.isViewportPercentageLength();
67 if (primitiveValue.isCalculated())
    [all...]
LengthStyleInterpolation.cpp 16 const CSSPrimitiveValue& primitiveValue = blink::toCSSPrimitiveValue(value);
17 if (primitiveValue.cssCalcValue())
22 return CSSPrimitiveValue::unitTypeToLengthUnitType(primitiveValue.primitiveType(), type);
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderCustom.cpp 148 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
150 if (primitiveValue->getValueID() == CSSValueCurrentcolor) {
178 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
179 if (Pair* pairValue = primitiveValue->getPairValue()) {
188 state.style()->setJustifyItems(*primitiveValue);
297 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
300 if (primitiveValue->getValueID() == CSSValueNormal) {
302 } else if (primitiveValue->isLength()) {
306 lineHeight = primitiveValue->computeLength<Length>(state.cssToLengthConversionData().copyWithAdjustedZoom(multiplier));
307 } else if (primitiveValue->isPercentage())
    [all...]
ViewportStyleResolver.cpp 127 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value.get());
129 if (primitiveValue->isNumber() || primitiveValue->isPx())
130 return primitiveValue->getFloatValue();
132 if (primitiveValue->isFontRelativeLength())
133 return primitiveValue->getFloatValue() * m_document->renderStyle()->fontDescription().computedSize();
135 if (primitiveValue->isPercentage()) {
136 float percentValue = primitiveValue->getFloatValue() / 100.0f;
148 switch (primitiveValue->getValueID()) {
177 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value.get())
    [all...]
CSSToStyleMap.cpp 65 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
66 switch (primitiveValue->getValueID()) {
91 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
92 layer->setClip(*primitiveValue);
105 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
106 layer->setComposite(*primitiveValue);
119 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
120 layer->setBlendMode(*primitiveValue);
133 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
134 layer->setOrigin(*primitiveValue);
    [all...]
StyleBuilderConverter.cpp 44 static GridLength convertGridTrackBreadth(const StyleResolverState& state, CSSPrimitiveValue* primitiveValue)
46 if (primitiveValue->getValueID() == CSSValueMinContent)
49 if (primitiveValue->getValueID() == CSSValueMaxContent)
53 if (primitiveValue->isFlex())
54 return GridLength(primitiveValue->getDoubleValue());
56 return primitiveValue->convertToLength<FixedConversion | PercentConversion | AutoConversion>(state.cssToLengthConversionData());
83 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
84 return state.document().textLinkColors().colorFromPrimitiveValue(primitiveValue, state.style()->color(), forVisitedLink);
89 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
90 if (primitiveValue->isURI()
    [all...]
StyleBuilderConverter.h 101 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
102 CSSValueID valueID = primitiveValue->getValueID();
112 T result = primitiveValue->computeLength<T>(state.cssToLengthConversionData());
114 T originalLength = primitiveValue->computeLength<T>(state.cssToLengthConversionData().copyWithAdjustedZoom(1.0));
127 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(value);
128 if (primitiveValue->getValueID() == IdForNone)
130 return AtomicString(primitiveValue->getStringValue());
FilterOperationResolver.cpp 80 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(inValue);
81 if (primitiveValue->getValueID() == CSSValueNone)
TransformBuilder.cpp 47 static Length convertToFloatLength(CSSPrimitiveValue* primitiveValue, const CSSToLengthConversionData& conversionData)
49 ASSERT(primitiveValue);
50 return primitiveValue->convertToLength<FixedConversion | PercentConversion>(conversionData);
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
SizesCalcParserTest.cpp 38 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(cssValue.get());
39 if (primitiveValue)
40 primitiveValue->accumulateLengthArray(lengthArray);
BisonCSSParser-in.cpp     [all...]
CSSPropertyParser.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
ReferenceFilterBuilder.cpp 90 const CSSPrimitiveValue& primitiveValue = *((CSSPrimitiveValue*)cssValue.get());
91 eColorInterpolation = (EColorInterpolation)primitiveValue;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 161 static PassOwnPtrWillBeRawPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, CSSValueID primitiveValue, const HTMLQualifiedName& tagName)
163 return adoptPtrWillBeNoop(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
177 HTMLElementEquivalent(CSSPropertyID, CSSValueID primitiveValue, const HTMLQualifiedName& tagName);
197 HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id, CSSValueID primitiveValue, const HTMLQualifiedName& tagName)
199 , m_primitiveValue(CSSPrimitiveValue::createIdentifier(primitiveValue))
202 ASSERT(primitiveValue != CSSValueInvalid);
218 static PassOwnPtrWillBeRawPtr<HTMLElementEquivalent> create(CSSValueID primitiveValue, const HTMLQualifiedName& tagName)
220 return adoptPtrWillBeNoop(new HTMLTextDecorationEquivalent(primitiveValue, tagName));
228 HTMLTextDecorationEquivalent(CSSValueID primitiveValue, const HTMLQualifiedName& tagName);
231 HTMLTextDecorationEquivalent::HTMLTextDecorationEquivalent(CSSValueID primitiveValue, const HTMLQualifiedName& tagName
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]
  /external/chromium_org/v8/src/
mirror-debugger.js 883 * Return the internal properties of the value, such as [[PrimitiveValue]] of
893 var primitiveValue = %_ValueOf(value);
894 return [new InternalPropertyMirror("[[PrimitiveValue]]", primitiveValue)];
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 

Completed in 941 milliseconds