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

1 2 3 4

  /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/luni/src/main/java/java/lang/
Number.java 58 public abstract float floatValue();
Byte.java 164 public float floatValue() {
Short.java 163 public float floatValue() {
  /external/chromium_org/third_party/icu/source/io/
ufmt_cmn.h 55 float floatValue; /* float */
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInteger.java 175 public float floatValue() {
UnsignedLong.java 172 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/icu4c/io/
ufmt_cmn.h 56 float floatValue; /* float */
  /libcore/luni/src/test/java/libcore/java/text/
NumberFormatTest.java 34 public float floatValue() { throw new UnsupportedOperationException(); }
  /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);
  /art/test/070-nio-buffer/src/
Main.java 134 final float floatValue = 3.14159f;
150 if (floatBuf.put(3, floatValue).get(3) != floatValue) {
  /dalvik/tests/070-nio-buffer/src/
Main.java 134 final float floatValue = 3.14159f;
150 if (floatBuf.put(3, floatValue).get(3) != floatValue) {
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDouble.java 224 public float floatValue() {
  /frameworks/av/include/media/stagefright/foundation/
AMessage.h 129 float floatValue;
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicInteger.java 238 public float floatValue() {
AtomicLong.java 252 public float floatValue() {
  /external/chromium_org/third_party/skia/src/utils/
SkJSON.cpp 152 float SkJSON::Object::Iter::floatValue() const {
189 this->addFloat(iter.name(), iter.floatValue());
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java 138 poseTransform.setTranslation(loc.get(0).floatValue(), -loc.get(2).floatValue(), loc.get(1).floatValue());
139 poseTransform.setRotation(new Quaternion(quat.get(1).floatValue(), quat.get(3).floatValue(), -quat.get(2).floatValue(), quat.get(0).floatValue()));
140 poseTransform.setScale(size.get(0).floatValue(), size.get(2).floatValue(), size.get(1).floatValue());
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
MatParam.java 299 oc.write(f.floatValue(), "value_float", 0f);

Completed in 1167 milliseconds

1 2 3 4