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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/awt-kernel/src/main/java/java/awt/font/
TextAttribute.java 113 public static final Float JUSTIFICATION_FULL = new Float(1.0f);
119 public static final Float JUSTIFICATION_NONE = new Float(0.0f);
128 public static final Float POSTURE_REGULAR = new Float(0.0f);
131 public static final Float POSTURE_OBLIQUE = new Float(0.20f);
224 public static final Float WEIGHT_EXTRA_LIGHT = new Float(0.5f)
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
FloatTest.java 26 @TestTargetClass(Float.class)
96 float result = Float.parseFloat(originalFloatString);
97 rawBits = Float.floatToIntBits(result);
98 assertEquals("Original float(" + originalFloatString + ") Converted float(" + result
104 * @tests java.lang.Float#Float(float)
109 method = "Float",
    [all...]
  /external/skia/src/animator/
SkDrawEmboss.cpp 23 SK_MEMBER(ambient, Float),
24 SK_MEMBER_ARRAY(direction, Float),
25 SK_MEMBER(radius, Float),
26 SK_MEMBER(specular, Float)
SkDrawLine.cpp 26 SK_MEMBER(x1, Float),
27 SK_MEMBER(x2, Float),
28 SK_MEMBER(y1, Float),
29 SK_MEMBER(y2, Float)
SkDrawPoint.cpp 26 SK_MEMBER_ALIAS(x, fPoint.fX, Float),
27 SK_MEMBER_ALIAS(y, fPoint.fY, Float)
37 SK_MEMBER_ALIAS(x, fPoint.fX, Float),
38 SK_MEMBER_ALIAS(y, fPoint.fY, Float)
SkDrawDash.cpp 24 SK_MEMBER_ARRAY(intervals, Float),
25 SK_MEMBER(phase, Float)
SkDrawDiscrete.cpp 26 SK_MEMBER(deviation, Float),
27 SK_MEMBER(segLength, Float)
SkDisplayNumber.cpp 31 SK_MEMBER_PROPERTY(MAX_VALUE, Float),
32 SK_MEMBER_PROPERTY(MIN_VALUE, Float),
33 SK_MEMBER_PROPERTY(NEGATIVE_INFINITY, Float),
34 SK_MEMBER_PROPERTY(NaN, Float),
35 SK_MEMBER_PROPERTY(POSITIVE_INFINITY, Float)
  /dalvik/dx/src/com/android/dx/rop/cst/
CstFloat.java 28 public static final CstFloat VALUE_0 = make(Float.floatToIntBits(0.0f));
31 public static final CstFloat VALUE_1 = make(Float.floatToIntBits(1.0f));
34 public static final CstFloat VALUE_2 = make(Float.floatToIntBits(2.0f));
40 * @param bits the {@code float} value as {@code int} bits
53 * @param bits the {@code float} value as {@code int} bits
63 return "float{0x" + Hex.u4(bits) + " / " +
64 Float.intBitsToFloat(bits) + '}';
69 return Type.FLOAT;
75 return "float";
80 return Float.toString(Float.intBitsToFloat(getIntBits()))
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
FloatDoubleTest.java 30 Float f = Float.valueOf(1.0f);
43 float pz = 0.0f;
44 float nz = -0.0f;
46 float pzero = 1.0f / Float.POSITIVE_INFINITY;
47 float nzero = 1.0f / Float.NEGATIVE_INFINITY;
71 assertEquals(Float.valueOf(pz), Float.valueOf(pz))
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/fsub/
Test_fsub.java 50 * @title Arguments = Float.MAX_VALUE, Float.NaN
54 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
58 * @title Arguments = Float.POSITIVE_INFINITY,
59 * Float.NEGATIVE_INFINITY
63 assertEquals(Float.POSITIVE_INFINITY, t.run(Float.POSITIVE_INFINITY,
64 Float.NEGATIVE_INFINITY))
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/sub_float/
Test_sub_float.java 52 * @title Types of arguments - int, float. Dalvik doens't distinguish 32-bits types internally,
53 * so this subtraction of float and int makes no sense but shall not crash the VM.
64 * @title Arguments = Float.MAX_VALUE, Float.NaN
68 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
72 * @title Arguments = Float.POSITIVE_INFINITY,
73 * Float.NEGATIVE_INFINITY
77 assertEquals(Float.POSITIVE_INFINITY, t.run(Float.POSITIVE_INFINITY
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/sub_float_2addr/
Test_sub_float_2addr.java 50 * @title Types of arguments - int, float. Dalvik doens't distinguish 32-bits types internally,
51 * so this subtraction of float and int makes no sense but shall not crash the VM.
62 * @title Arguments = Float.MAX_VALUE, Float.NaN
66 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
70 * @title Arguments = Float.POSITIVE_INFINITY,
71 * Float.NEGATIVE_INFINITY
75 assertEquals(Float.POSITIVE_INFINITY, t.run(Float.POSITIVE_INFINITY
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/fdiv/
Test_fdiv.java 50 * @title Arguments = Float.MAX_VALUE, Float.NaN
54 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
58 * @title Arguments = Float.POSITIVE_INFINITY,
59 * Float.NEGATIVE_INFINITY
63 assertEquals(Float.NaN, t.run(Float.POSITIVE_INFINITY,
64 Float.NEGATIVE_INFINITY))
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/div_float/
Test_div_float.java 50 * @title Types of arguments - int, float. Dalvik doens't distinguish 32-bits types internally,
51 * so this division of float and int makes no sense but shall not crash the VM.
63 * @title Arguments = Float.MAX_VALUE, Float.NaN
67 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
71 * @title Arguments = Float.POSITIVE_INFINITY,
72 * Float.NEGATIVE_INFINITY
76 assertEquals(Float.NaN, t.run(Float.POSITIVE_INFINITY
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/div_float_2addr/
Test_div_float_2addr.java 50 * @title Types of arguments - int, float. Dalvik doens't distinguish 32-bits types internally,
51 * so this division of float and int makes no sense but shall not crash the VM.
63 * @title Arguments = Float.MAX_VALUE, Float.NaN
67 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
71 * @title Arguments = Float.POSITIVE_INFINITY,
72 * Float.NEGATIVE_INFINITY
76 assertEquals(Float.NaN, t.run(Float.POSITIVE_INFINITY
    [all...]
  /dalvik/libcore/luni/src/test/java/java/lang/
FloatTest.java 26 assertEquals(2358.166016f, Float.valueOf("2358.166016"));
31 assertEquals(-2.14748365E9f, Float.valueOf(String.valueOf(Integer.MIN_VALUE)));
  /cts/tools/dx-tests/src/dxc/junit/opcodes/fmul/
Test_fmul.java 50 * @title Arguments = Float.MAX_VALUE, Float.NaN
54 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
58 * @title Arguments = Float.POSITIVE_INFINITY, 0
62 assertEquals(Float.NaN, t.run(Float.POSITIVE_INFINITY, 0));
66 * @title Arguments = Float.POSITIVE_INFINITY, -2.7f
70 assertEquals(Float.NEGATIVE_INFINITY, t.run(Float.POSITIVE_INFINITY
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/mul_float/
Test_mul_float.java 51 * @title Types of arguments - float, int. Dalvik doens't distinguish 32-bits types internally,
52 * so this multiplication of float and int makes no sense but shall not crash the VM.
64 * @title Arguments = Float.MAX_VALUE, Float.NaN
68 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
72 * @title Arguments = Float.POSITIVE_INFINITY, 0
76 assertEquals(Float.NaN, t.run(Float.POSITIVE_INFINITY, 0))
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/mul_float_2addr/
Test_mul_float_2addr.java 51 * @title Types of arguments - float, int. Dalvik doens't distinguish 32-bits types internally,
52 * so this multiplication of float and int makes no sense but shall not crash the VM.
64 * @title Arguments = Float.MAX_VALUE, Float.NaN
68 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
72 * @title Arguments = Float.POSITIVE_INFINITY, 0
76 assertEquals(Float.NaN, t.run(Float.POSITIVE_INFINITY, 0))
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/fadd/
Test_fadd.java 51 * @title Arguments = Float.MAX_VALUE, Float.NaN
55 assertEquals(Float.POSITIVE_INFINITY, t.run(3.3028235E38f, 0.11E38f));
59 * @title Arguments = Float.POSITIVE_INFINITY,
60 * Float.NEGATIVE_INFINITY
64 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
65 Float.NEGATIVE_INFINITY)));
69 * @title Arguments = Float.POSITIVE_INFINITY,
70 * Float.POSITIVE_INFINIT
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/frem/
Test_frem.java 50 * @title Arguments = Float.MAX_VALUE, Float.NaN
54 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
58 * @title Arguments = Float.POSITIVE_INFINITY,
59 * Float.NEGATIVE_INFINITY
63 assertEquals(Float.NaN, t.run(Float.POSITIVE_INFINITY,
64 Float.NEGATIVE_INFINITY))
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/add_float/
Test_add_float.java 50 * @title Types of arguments - int, float. Dalvik doens't distinguish 32-bits types internally,
51 * so this sum of float and int makes no sense but shall not crash the VM.
63 * @title Arguments = Float.MAX_VALUE, Float.NaN
67 assertEquals(Float.POSITIVE_INFINITY, t.run(3.3028235E38f, 0.11E38f));
71 * @title Arguments = Float.POSITIVE_INFINITY,
72 * Float.NEGATIVE_INFINITY
76 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
77 Float.NEGATIVE_INFINITY)))
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/add_float_2addr/
Test_add_float_2addr.java 50 * @title Types of arguments - int, float. Dalvik doens't distinguish 32-bits types internally,
51 * so this sum of float and int makes no sense but shall not crash the VM.
63 * @title Arguments = Float.MAX_VALUE, Float.NaN
67 assertEquals(Float.POSITIVE_INFINITY, t.run(3.3028235E38f, 0.11E38f));
71 * @title Arguments = Float.POSITIVE_INFINITY,
72 * Float.NEGATIVE_INFINITY
76 assertTrue(Float.isNaN(t.run(Float.POSITIVE_INFINITY,
77 Float.NEGATIVE_INFINITY)))
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/rem_float/
Test_rem_float.java 51 * @title Types of arguments - float, int. Dalvik doens't distinguish 32-bits types internally,
52 * so this operation of float and int makes no sense but shall not crash the VM.
63 * @title Arguments = Float.MAX_VALUE, Float.NaN
67 assertEquals(Float.NaN, t.run(Float.MAX_VALUE, Float.NaN));
71 * @title Arguments = Float.POSITIVE_INFINITY,
72 * Float.NEGATIVE_INFINITY
76 assertEquals(Float.NaN, t.run(Float.POSITIVE_INFINITY
    [all...]

Completed in 254 milliseconds

1 2 3 4 5 6 7 8 91011>>