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

1 2

  /external/clang/test/CodeGenCXX/
2012-03-16-StoreAlign.cpp 10 return getFloatValue() == o.getFloatValue();
14 float getFloatValue() const {
  /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 338 public float getFloatValue() {
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ViewportStyleResolver.cpp 116 return primitiveValue->getFloatValue();
119 return primitiveValue->getFloatValue() * m_document->renderStyle()->fontDescription().computedSize();
122 float percentValue = primitiveValue->getFloatValue() / 100.0f;
172 return Length(primitiveValue->getFloatValue(), Percent);
StyleBuilderCustom.cpp 607 if (float percent = primitiveValue->getFloatValue())
611 if (float number = primitiveValue->getFloatValue())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Length.h 106 bool operator==(const Length& o) const { return (m_type == o.m_type) && (m_quirk == o.m_quirk) && (isUndefined() || (getFloatValue() == o.getFloatValue()) || isCalculatedEqual(o)); }
126 return getFloatValue();
141 return getFloatValue();
210 return getFloatValue() > 0;
217 return getFloatValue() < 0;
266 float getFloatValue() const
281 return getFloatValue();
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.idl 59 [RaisesException] float getFloatValue([Default=Undefined] optional unsigned short unitType);
CSSPrimitiveValue.h 270 float getFloatValue(unsigned short unitType, ExceptionState& es) const { return getValue<float>(unitType, es); }
271 float getFloatValue(unsigned short unitType) const { return getValue<float>(unitType); }
272 float getFloatValue() const { return getValue<float>(); }
CSSCrossfadeValue.cpp 111 float percentage = m_percentageValue->getFloatValue();
186 m_generatedImage = CrossfadeGeneratedImage::create(fromImage, toImage, m_percentageValue->getFloatValue(), fixedSize(renderer), size);
CSSImageSetValue.cpp 66 float scaleFactor = toCSSPrimitiveValue(scaleFactorValue)->getFloatValue();
LengthFunctions.cpp 126 return length.getFloatValue();
MediaQueryEvaluator.cpp 188 result = toCSSPrimitiveValue(value)->getFloatValue(CSSPrimitiveValue::CSS_NUMBER);
301 return compareValue(deviceScaleFactor, resolution->getFloatValue(), op);
314 floorf(0.5 + 100 * resolution->getFloatValue(CSSPrimitiveValue::CSS_DPPX)) / 100, op);
317 return compareValue(deviceScaleFactor, resolution->getFloatValue(CSSPrimitiveValue::CSS_DPPX), op);
CSSGradientValue.cpp 148 offset = stop.m_position->getFloatValue(CSSPrimitiveValue::CSS_PERCENTAGE) / 100;
150 offset = stop.m_position->getFloatValue(CSSPrimitiveValue::CSS_NUMBER);
181 stops[i].offset = stop.m_position->getFloatValue(CSSPrimitiveValue::CSS_PERCENTAGE) / 100;
397 return value->getFloatValue() * zoomFactor;
401 return value->getFloatValue() / 100.f * edgeDistance;
650 float angle = m_angle->getFloatValue(CSSPrimitiveValue::CSS_DEG);
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_value.cc 69 FloatMax Value::getFloatValue() const {
ubsan_value.h 199 FloatMax getFloatValue() const;
ubsan_diag.cc 50 AddArg(V.getFloatValue());
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
JavaBridgeReturnValuesTest.java 65 public float getFloatValue() {
141 executeJavaScriptAndGetStringResult("typeof testObject.getFloatValue()"));
178 "Math.abs(42.1 - testObject.getFloatValue()) < 0.001"));
  /frameworks/base/tests/WebViewTests/src/com/android/webviewtests/
JavaBridgeReturnValuesTest.java 79 public float getFloatValue() {
153 executeJavaScriptAndGetStringResult("typeof testObject.getFloatValue()"));
188 "Math.abs(42.1 - testObject.getFloatValue()) < 0.001"));
  /cts/tools/dex-tools/src/dex/reader/
DexEncodedValueImpl.java 78 value = getFloatValue(valueArg);
229 private Float getFloatValue(int valueArg) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportArguments.cpp 79 return length.getFloatValue();
85 return initialViewportSize.width() * length.getFloatValue() / 100.0f;
88 return initialViewportSize.height() * length.getFloatValue() / 100.0f;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLMessageFormatter.java 103 return String.format("%f", var.getFloatValue(0)); //$NON-NLS-1$
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
StateTransformFactory.java 274 float v0 = msg.getArgs(1).getFloatValue(0);
275 float v1 = msg.getArgsCount() > 2 ? msg.getArgs(2).getFloatValue(0) : 0;
276 float v2 = msg.getArgsCount() > 3 ? msg.getArgs(3).getFloatValue(0) : 0;
277 float v3 = msg.getArgsCount() > 4 ? msg.getArgs(4).getFloatValue(0) : 0;
292 v[i] = msg.getArgs(1).getFloatValue(i);
449 float width = msg.getArgs(0).getFloatValue(0);
482 float factor = msg.getArgs(0).getFloatValue(0);
483 float units = msg.getArgs(1).getFloatValue(0);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
SkiaImageFilterBuilder.cpp 290 float pixelRadius = static_cast<const BlurFilterOperation*>(&op)->stdDeviation().getFloatValue();
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCharacteristic.java 483 public Float getFloatValue(int formatType, int offset) {
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLength.cpp 341 length.newValueSpecifiedUnits(svgType, value->getFloatValue(), es);

Completed in 488 milliseconds

1 2