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

1 2 3 4 5 6 7 8 91011>>

  /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...]
FloatValue.java 30 public abstract class FloatValue extends Category1Value
44 * Returns the negated value of this FloatValue.
46 public abstract FloatValue negate();
49 * Converts this FloatValue to an IntegerValue.
54 * Converts this FloatValue to a LongValue.
59 * Converts this FloatValue to a DoubleValue.
67 * Returns the generalization of this FloatValue and the given other
68 * FloatValue.
70 public abstract FloatValue generalize(FloatValue other)
    [all...]
Value.java 77 * Returns this Value as a FloatValue.
79 public FloatValue floatValue()
  /libcore/ojluni/src/main/java/java/lang/
Number.java 81 public abstract float floatValue();
  /packages/services/Car/tests/android_car_api_test/src/android/car/apitest/
CarPropertyValueTest.java 30 CarPropertyValue<Float> floatValue =
33 writeToParcel(floatValue);
  /external/deqp/framework/common/
tcuEither.cpp 104 const float floatValue = 0.43223332995f;
105 const Either<int, float> either (floatValue);
113 TCU_CHECK(either.getSecond() == floatValue);
114 TCU_CHECK(either.get<float>() == floatValue);
120 const float floatValue = 0.43223332995f;
121 Either<int, float> either (floatValue);
138 const float floatValue = 0.43223332995f;
141 either = floatValue;
149 TCU_CHECK(either.getSecond() == floatValue);
150 TCU_CHECK(either.get<float>() == floatValue);
    [all...]
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyPrimitiveValue.java 59 @Override public float floatValue() {
60 return getValue().floatValue();
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/primitives/
MutableFloat.java 21 @Override public float floatValue() {return (float) value;}
MutableInteger.java 21 @Override public float floatValue() {return (float) value;}
  /tools/tradefederation/core/src/com/android/tradefed/util/
TimeVal.java 140 public float floatValue() {
141 return mValue.floatValue();
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInteger.java 200 public float floatValue() {
  /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
UnsignedInteger.java 186 public float 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/icu/icu4c/source/io/
ufmt_cmn.h 58 float floatValue; /* float */
  /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);
  /frameworks/base/core/java/android/provider/
SettingsValidators.java 218 final float floatValue = Float.parseFloat(value);
219 return floatValue >= mMin && floatValue <= mMax;
  /frameworks/rs/rsov/compiler/spirit/
core_defs.h 32 float floatValue;
  /libcore/ojluni/src/main/java/java/util/concurrent/atomic/
DoubleAdder.java 208 public float 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_GetPutFieldsDefaulted.java 52 public float floatValue = 0.0f;
92 floatValue = 298.54f;
109 floatValue == other.floatValue &&
123 floatValue = getField.get("floatValue", 298.54f);
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);
  /external/mockito/src/test/java/org/mockito/internal/stubbing/defaultanswers/
ReturnsGenericDeepStubsTest.java 83 type_that_is_the_upper_bound_of_the_wildcard.floatValue();
91 the_raw_type_that_should_be_returned.floatValue();
  /art/test/070-nio-buffer/src/
Main.java 135 final float floatValue = 3.14159f;
151 if (floatBuf.put(3, floatValue).get(3) != floatValue) {
  /external/annotation-tools/asmx/test/conform/annotations/
ValuesAnnotation.class 

Completed in 1236 milliseconds

1 2 3 4 5 6 7 8 91011>>