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

  /frameworks/base/core/java/android/animation/
FloatKeyframeSet.java 45 return getFloatValue(fraction);
60 public float getFloatValue(float fraction) {
64 firstValue = ((FloatKeyframe) mKeyframes.get(0)).getFloatValue();
65 lastValue = ((FloatKeyframe) mKeyframes.get(1)).getFloatValue();
80 float prevValue = prevKeyframe.getFloatValue();
81 float nextValue = nextKeyframe.getFloatValue();
96 float prevValue = prevKeyframe.getFloatValue();
97 float nextValue = nextKeyframe.getFloatValue();
120 float prevValue = prevKeyframe.getFloatValue();
121 float nextValue = nextKeyframe.getFloatValue();
    [all...]
Keyframe.java 336 public float getFloatValue() {
PropertyValuesHolder.java     [all...]
  /external/webkit/Source/WebCore/platform/
Length.h 68 bool operator==(const Length& o) const { return (getFloatValue() == o.getFloatValue()) && (m_type == o.m_type) && (m_quirk == o.m_quirk); }
69 bool operator!=(const Length& o) const { return (getFloatValue() != o.getFloatValue()) || (m_type != o.m_type) || (m_quirk != o.m_quirk); }
88 return getFloatValue();
152 return getFloatValue();
168 bool isPositive() const { return getFloatValue() > 0; }
169 bool isNegative() const { return getFloatValue() < 0; }
207 float getFloatValue() const
  /external/webkit/Source/WebCore/css/
SVGCSSStyleSelector.cpp 292 f = primitiveValue->getFloatValue() / 100.0f;
294 f = primitiveValue->getFloatValue();
310 f = primitiveValue->getFloatValue() / 100.0f;
312 f = primitiveValue->getFloatValue();
328 f = primitiveValue->getFloatValue() / 100.0f;
330 f = primitiveValue->getFloatValue();
401 f = primitiveValue->getFloatValue();
493 f = primitiveValue->getFloatValue() / 100.0f;
495 f = primitiveValue->getFloatValue();
516 int orientation = angleToGlyphOrientation(primitiveValue->getFloatValue());
    [all...]
CSSPrimitiveValue.idl 57 float getFloatValue(in unsigned short unitType)
CSSPrimitiveValue.h 157 float getFloatValue(unsigned short unitType, ExceptionCode& ec) const { return static_cast<float>(getDoubleValue(unitType, ec)); }
158 float getFloatValue(unsigned short unitType) const { return static_cast<float>(getDoubleValue(unitType)); }
159 float getFloatValue() const { return static_cast<float>(m_value.num); }
CSSGradientValue.cpp 126 offset = stop.m_position->getFloatValue(CSSPrimitiveValue::CSS_PERCENTAGE) / 100;
128 offset = stop.m_position->getFloatValue(CSSPrimitiveValue::CSS_NUMBER);
160 stops[i].offset = stop.m_position->getFloatValue(CSSPrimitiveValue::CSS_PERCENTAGE) / 100;
371 return value->getFloatValue() * zoomFactor;
374 return value->getFloatValue() / 100.f * (isHorizontal ? size.width() : size.height());
538 float angle = m_angle->getFloatValue(CSSPrimitiveValue::CSS_DEG);
636 result = radius->getFloatValue() * zoomFactor;
638 result = *widthOrHeight * radius->getFloatValue() / 100;
    [all...]
MediaQueryEvaluator.cpp 214 result = static_cast<CSSPrimitiveValue*>(value)->getFloatValue(CSSPrimitiveValue::CSS_NUMBER);
294 return value->isPrimitiveValue() && compareValue(frame->page()->chrome()->scaleFactor(), static_cast<CSSPrimitiveValue*>(value)->getFloatValue(), op);
CSSStyleSelector.cpp     [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexEncodedValueImpl.java 78 value = getFloatValue(valueArg);
229 private Float getFloatValue(int valueArg) {
  /external/webkit/Source/WebCore/bindings/js/
JSCSSStyleDeclarationCustom.cpp 164 return jsNumber(static_pointer_cast<CSSPrimitiveValue>(v)->getFloatValue(CSSPrimitiveValue::CSS_PX));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 176 cssValue.get())->getFloatValue(CSSPrimitiveValue::CSS_PX));
  /external/webkit/Source/WebCore/svg/
SVGLength.cpp 510 length.newValueSpecifiedUnits(svgType, value->getFloatValue(), ec);
  /external/webkit/Source/WebCore/platform/mac/
HTMLConverter.mm 360 *val = [primitiveValue getFloatValue:DOM_CSS_PX];
363 *val = 4 * [primitiveValue getFloatValue:DOM_CSS_PT] / 3;
366 *val = 16 * [primitiveValue getFloatValue:DOM_CSS_PC];
369 *val = 96 * [primitiveValue getFloatValue:DOM_CSS_CM] / (CGFloat)2.54;
372 *val = 96 * [primitiveValue getFloatValue:DOM_CSS_MM] / (CGFloat)25.4;
375 *val = 96 * [primitiveValue getFloatValue:DOM_CSS_IN];
    [all...]
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 374 m_fontSizeDelta = primitiveValue->getFloatValue();
    [all...]
ApplyStyleCommand.cpp     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
DataGrid.js     [all...]
  /external/webkit/Source/WebCore/bindings/objc/
PublicDOMInterfaces.h     [all...]

Completed in 358 milliseconds