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

1 2 3 4 5 6 7 8 9

  /external/proguard/src/proguard/evaluation/value/
NegatedFloatValue.java 24 * This FloatValue represents a float value that is negated.
30 private final FloatValue floatValue;
36 public NegatedFloatValue(FloatValue floatValue)
38 this.floatValue = floatValue;
42 // Implementations of unary methods of FloatValue.
44 public FloatValue negate()
46 return floatValue;
    [all...]
Value.java 77 * Returns this Value as a FloatValue.
79 public FloatValue floatValue()
  /frameworks/base/core/java/android/animation/
FloatEvaluator.java 39 float startFloat = startValue.floatValue();
40 return startFloat + fraction * (endValue.floatValue() - startFloat);
FloatKeyframeSet.java 81 return ((Number)mEvaluator.evaluate(fraction, firstValue, lastValue)).floatValue();
99 floatValue();
115 floatValue();
132 floatValue();
137 return ((Number)mKeyframes.get(mNumKeyframes - 1).getValue()).floatValue();
  /libcore/luni/src/main/java/java/lang/
Number.java 58 public abstract float floatValue();
  /external/deqp/framework/randomshaders/
rsgToken.cpp 62 m_arg.floatValue = other.m_arg.floatValue;
84 else if (m_type == FLOAT_LITERAL && m_arg.floatValue != other.m_arg.floatValue)
rsgToken.hpp 157 float floatValue;
179 m_arg.floatValue = value;
208 return m_arg.floatValue;
  /libcore/support/src/test/java/tests/support/
Support_GetPutFields.java 41 public float floatValue = 0.0f;
81 floatValue = 24.12f;
98 floatValue == other.floatValue &&
112 floatValue = getField.get("floatValue", 0.0f);
126 putField.put("floatValue", floatValue);
Support_GetPutFieldsDeprecated.java 43 public float floatValue = 0.0f;
83 floatValue = 43.22f;
100 floatValue == other.floatValue &&
113 floatValue = getField.get("floatValue", 0.0f);
127 putField.put("floatValue", floatValue);
Support_GetPutFieldsDefaulted.java 52 public float floatValue = 0.0f;
92 floatValue = 298.54f;
109 floatValue == other.floatValue &&
123 floatValue = getField.get("floatValue", 298.54f);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
AverageFilterTest.java 39 assertEquals(1f, ((Float) getOutputFrame("avg").asFrameValue().getValue()).floatValue(),
50 assertEquals(0.8f, ((Float) getOutputFrame("avg").asFrameValue().getValue()).floatValue(),
ExposureFilterTest.java 59 asFrameValue().getValue()).floatValue(), 0.001f);
62 asFrameValue().getValue()).floatValue(), 0.001f);
  /libcore/luni/src/test/java/libcore/java/lang/
OldDoubleTest.java 52 assertEquals(Float.POSITIVE_INFINITY, new Double("3.4028236E38").floatValue());
53 assertEquals(Float.NEGATIVE_INFINITY, new Double("-3.4028236E38").floatValue());
54 assertEquals(Float.MAX_VALUE, new Double("3.4028235E38").floatValue());
55 assertEquals(Float.MIN_VALUE, new Double("1.4E-45").floatValue());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerConvertTest.java 29 * floatValue(), doubleValue()
312 float aNumber = new BigInteger(a).floatValue();
323 float aNumber = new BigInteger(a).floatValue();
334 float aNumber = new BigInteger(a).floatValue();
345 float aNumber = new BigInteger(a).floatValue();
356 float aNumber = new BigInteger(a).floatValue();
369 float aNumber = new BigInteger(aSign, a).floatValue();
383 float aNumber = new BigInteger(aSign, a).floatValue();
394 float aNumber = new BigInteger(aSign, a).floatValue();
406 float aNumber = new BigInteger(aSign, a).floatValue();
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
CSVWriterFilter.java 75 float sharpness = ((Float)sharpnessValue.getValue()).floatValue();
79 float overExposure = ((Float)overExposureValue.getValue()).floatValue();
83 float underExposure = ((Float)underExposureValue.getValue()).floatValue();
87 float colorfulness = ((Float)colorfulnessValue.getValue()).floatValue();
91 float contrast = ((Float)contrastValue.getValue()).floatValue();
95 float brightness = ((Float)brightnessValue.getValue()).floatValue();
  /external/guava/guava-tests/test/com/google/common/base/
DefaultsTest.java 34 assertEquals(0.0f, Defaults.defaultValue(float.class).floatValue());
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
NormFilter.java 52 float xValue = ((Float)xFrameValue.getValue()).floatValue();
54 float yValue = ((Float)yFrameValue.getValue()).floatValue();
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
StochasticLinearRankerWithPrior.java 182 mAlpha = Float.valueOf(value.trim()).floatValue();
184 mAutoAlpha = Float.valueOf(value.trim()).floatValue();
186 mForgetRate = Float.valueOf(value.trim()).floatValue();
188 mMinReqTrainingPair = (int) Float.valueOf(value.trim()).floatValue();
190 mUserRankerPerf = Float.valueOf(value.trim()).floatValue();
192 mPriorRankerPerf = Float.valueOf(value.trim()).floatValue();
194 mNumTrainPair = (int) Float.valueOf(value.trim()).floatValue();
  /external/smali/util/src/main/java/org/jf/util/
NumberUtils.java 74 float floatValue = Float.intBitsToFloat(value);
75 if (Float.isNaN(floatValue)) {
82 String asFloat = format.format(floatValue);
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
AtomicInteger.java 102 public float floatValue() {
AtomicLong.java 102 public float floatValue() {
  /external/jsr305/ri/src/main/java/javax/annotation/
Nonnegative.java 30 isNegative = value.floatValue() < 0;
  /external/nist-sip/java/gov/nist/javax/sip/header/
TimeStamp.java 141 return this.timeStampFloat == -1 ? Float.valueOf(timeStamp).floatValue()
148 return delayFloat == -1 ? Float.valueOf(delay).floatValue() : delayFloat;
  /art/test/070-nio-buffer/src/
Main.java 134 final float floatValue = 3.14159f;
150 if (floatBuf.put(3, floatValue).get(3) != floatValue) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.idl 58 [Default=Undefined] optional float floatValue);

Completed in 771 milliseconds

1 2 3 4 5 6 7 8 9