Home
last modified time | relevance | path

Searched refs:getDoubleValue (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DTransformBuilder.cpp126 sy = firstValue->getDoubleValue(); in createTransformOperations()
128 sx = firstValue->getDoubleValue(); in createTransformOperations()
132 sy = secondValue->getDoubleValue(); in createTransformOperations()
146 sz = firstValue->getDoubleValue(); in createTransformOperations()
148 sy = firstValue->getDoubleValue(); in createTransformOperations()
150 sx = firstValue->getDoubleValue(); in createTransformOperations()
154 sz = thirdValue->getDoubleValue(); in createTransformOperations()
158 sy = secondValue->getDoubleValue(); in createTransformOperations()
246 double x = firstValue->getDoubleValue(); in createTransformOperations()
247 double y = secondValue->getDoubleValue(); in createTransformOperations()
[all …]
DCSSToStyleMap.cpp577 box.m_top = Length(slices->top()->getDoubleValue(), Percent); in mapNinePieceImageSlice()
581 box.m_bottom = Length(slices->bottom()->getDoubleValue(), Percent); in mapNinePieceImageSlice()
585 box.m_left = Length(slices->left()->getDoubleValue(), Percent); in mapNinePieceImageSlice()
589 box.m_right = Length(slices->right()->getDoubleValue(), Percent); in mapNinePieceImageSlice()
601 return value.getDoubleValue(); in toBorderImageLength()
603 return Length(value.getDoubleValue(CSSPrimitiveValue::CSS_PERCENTAGE), Percent); in toBorderImageLength()
DFilterOperationResolver.cpp103 arrayParameter->addValue(primitiveValue->getDoubleValue()); in parseCustomFilterArrayParameter()
118 numberParameter->addValue(primitiveValue->getDoubleValue()); in parseCustomFilterNumberParameter()
432 amount = firstValue->getDoubleValue(); in createFilterOperations()
454 amount = firstValue->getDoubleValue(); in createFilterOperations()
DStyleBuilderCustom.cpp282 lineHeight = Length(primitiveValue->getDoubleValue() * 100.0, Percent); in applyValueCSSPropertyLineHeight()
879 workingLength.setFlex(primitiveValue->getDoubleValue()); in createGridTrackBreadth()
1476 …perspectiveValue = CSSPrimitiveValue::create(primitiveValue->getDoubleValue(), CSSPrimitiveValue::… in oldApplyProperty()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSPrimitiveValue.cpp507 return getDoubleValue(); in computeDegrees()
509 return rad2deg(getDoubleValue()); in computeDegrees()
511 return grad2deg(getDoubleValue()); in computeDegrees()
513 return turn2deg(getDoubleValue()); in computeDegrees()
615 double result = getDoubleValue() * factor; in computeLengthDouble()
682 double CSSPrimitiveValue::getDoubleValue(unsigned short unitType, ExceptionState& exceptionState) c… in getDoubleValue() function in WebCore::CSSPrimitiveValue
694 double CSSPrimitiveValue::getDoubleValue(unsigned short unitType) const in getDoubleValue() function in WebCore::CSSPrimitiveValue
701 double CSSPrimitiveValue::getDoubleValue() const in getDoubleValue() function in WebCore::CSSPrimitiveValue
739 *result = getDoubleValue(); in getDoubleValueInternal()
768 double convertedValue = getDoubleValue(); in getDoubleValueInternal()
[all …]
DCSSPrimitiveValue.h265 double getDoubleValue(unsigned short unitType, ExceptionState&) const;
266 double getDoubleValue(unsigned short unitType) const;
267 double getDoubleValue() const;
278 … unitType, ExceptionState& exceptionState) const { return clampTo<T>(getDoubleValue(unitType, exce… in getValue()
279 …> inline T getValue(unsigned short unitType) const { return clampTo<T>(getDoubleValue(unitType)); } in getValue()
280 template<typename T> inline T getValue() const { return clampTo<T>(getDoubleValue()); } in getValue()
DCSSGradientValue.cpp82 double aVal = a.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER); in compareStops()
83 double bVal = b.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER); in compareStops()
479 if (stop.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER) == 0) { in customCSSText()
483 } else if (stop.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER) == 1) { in customCSSText()
489 … result.append(String::number(stop.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER))); in customCSSText()
758 if (stop.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER) == 0) { in customCSSText()
762 } else if (stop.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER) == 1) { in customCSSText()
768 … result.append(String::number(stop.m_position->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER))); in customCSSText()
DCSSCalculationValue.cpp208 return !m_value->getDoubleValue(); in isZero()
253 return m_value->getDoubleValue(); in doubleValue()
265 return m_value->getDoubleValue(); in computeLengthPx()
DCSSPrimitiveValueMappings.h4450 return Length(getDoubleValue(), Percent); in convertToLength()
/external/chromium_org/third_party/WebKit/Source/core/animation/
DAnimatableLength.cpp52 return create(primitiveValue->getDoubleValue() * scale, unitType, primitiveValue); in create()
148 return primitiveValue->getDoubleValue() >= 0; in isCompatibleWithRange()
DKeyframeAnimationEffectTest.cpp71 …Value = toCSSPrimitiveValue(toAnimatableLength(value.get())->toCSSValue().get())->getDoubleValue(); in expectDoubleValue()
73 …alue = toCSSPrimitiveValue(toAnimatableUnknown(value.get())->toCSSValue().get())->getDoubleValue(); in expectDoubleValue()
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
DJavaBridgeReturnValuesTest.java71 public double getDoubleValue() { in getDoubleValue() method in JavaBridgeReturnValuesTest.TestObject