HomeSort by relevance Sort by last modified time
    Searched refs:Float (Results 101 - 125 of 492) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/skia/src/animator/
SkDrawTextBox.cpp 35 SK_MEMBER_ALIAS(spacingAdd, fSpacingAdd, Float),
37 SK_MEMBER_ALIAS(spacingMul, fSpacingMul, Float),
SkMatrixParts.cpp 48 SK_MEMBER(degrees, Float)
69 SK_MEMBER(x, Float),
70 SK_MEMBER(y, Float)
91 SK_MEMBER(x, Float),
92 SK_MEMBER(y, Float)
112 SK_MEMBER(x, Float),
113 SK_MEMBER(y, Float)
133 SK_MEMBER(offset, Float),
SkDisplayInput.cpp 27 SK_MEMBER_ALIAS(float, fFloat, Float),
SkDrawPaint.cpp 47 SK_MEMBER_PROPERTY(ascent, Float),
49 SK_MEMBER_PROPERTY(descent, Float),
54 SK_MEMBER_FUNCTION(measureText, Float),
61 SK_MEMBER(strokeMiter, Float),
62 SK_MEMBER(strokeWidth, Float),
65 SK_MEMBER(textScaleX, Float),
66 SK_MEMBER(textSize, Float),
67 SK_MEMBER(textSkewX, Float),
  /libcore/luni/src/main/java/java/lang/
RealToString.java 125 public String floatToString(float f) {
129 public void appendFloat(AbstractStringBuilder sb, float f) {
133 public String convertFloat(AbstractStringBuilder sb, float inputNumber) {
134 int inputNumberBits = Float.floatToRawIntBits(inputNumber);
135 boolean positive = (inputNumberBits & Float.SIGN_MASK) == 0;
136 int e = (inputNumberBits & Float.EXPONENT_MASK) >> Float.MANTISSA_BITS;
137 int f = inputNumberBits & Float.MANTISSA_MASK;
154 int p = Float.EXPONENT_BIAS + Float.MANTISSA_BITS; // the power offset (precision
    [all...]
StringToReal.java 36 public float specialValue() {
38 return negative ? Float.NEGATIVE_INFINITY : Float.POSITIVE_INFINITY;
58 * exponent. Returns the closest float value to the real number, or Float.intBitsToFloat(-1).
60 private static native float parseFltImpl(String s, int e);
63 throw new NumberFormatException("Invalid " + (isDouble ? "double" : "float") + ": \"" + s + "\"");
80 // We ignore trailing double or float indicators; the method you called determines
209 private static float parseName(String name, boolean isDouble) {
225 return negative ? Float.NEGATIVE_INFINITY : Float.POSITIVE_INFINITY
    [all...]
  /system/media/mca/filterfw/java/android/filterfw/geometry/
Quad.java 22 import java.lang.Float;
58 public Quad translated(float x, float y) {
62 public Quad scaled(float s) {
66 public Quad scaled(float x, float y) {
71 List<Float> xs = Arrays.asList(p0.x, p1.x, p2.x, p3.x);
72 List<Float> ys = Arrays.asList(p0.y, p1.y, p2.y, p3.y);
73 float x0 = Collections.min(xs);
74 float y0 = Collections.min(ys)
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
MessageFormatter.java 31 ret += Float.intBitsToFloat(data.getInt());
71 ret += Float.intBitsToFloat(data.getInt());
144 , Float.intBitsToFloat(msg.getArg0())
146 , Float.intBitsToFloat(msg.getArg1())
148 , Float.intBitsToFloat(msg.getArg2())
150 , Float.intBitsToFloat(msg.getArg3()));
226 , Float.intBitsToFloat(msg.getArg0())
228 , Float.intBitsToFloat(msg.getArg1())
230 , Float.intBitsToFloat(msg.getArg2())
232 , Float.intBitsToFloat(msg.getArg3()))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
MessageFormatter.java 31 ret += Float.intBitsToFloat(data.getInt());
71 ret += Float.intBitsToFloat(data.getInt());
144 , Float.intBitsToFloat(msg.getArg0())
146 , Float.intBitsToFloat(msg.getArg1())
148 , Float.intBitsToFloat(msg.getArg2())
150 , Float.intBitsToFloat(msg.getArg3()));
226 , Float.intBitsToFloat(msg.getArg0())
228 , Float.intBitsToFloat(msg.getArg1())
230 , Float.intBitsToFloat(msg.getArg2())
232 , Float.intBitsToFloat(msg.getArg3()))
    [all...]
  /cts/tools/dasm/src/dasm/
Utils.java 44 * Converts string to a smallest possible number (int, long, float or
57 if (x <= (double) Float.MAX_VALUE && x >= (float) Float.MIN_VALUE) {
58 return new Float((float) x);
  /external/android-mock/tests/com/google/android/testing/mocking/
ConstructorCreationTests.java 59 public TestClass(int v1, float v2) {
122 new Object[]{1, new Float("2")},
123 new Type[]{Integer.TYPE, Float.TYPE});
129 new Type[]{Integer.TYPE, Float.TYPE});
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMathTest.java 42 public static void assertEquals(String message, float expected, float actual, float delta) {
60 // Test for method float java.lang.Math.abs(float)
61 assertTrue("Incorrect float abs value",
63 assertTrue("Incorrect float abs value",
340 // Test for method float java.lang.Math.max(float, float)
    [all...]
OldAndroidStrictMathTest.java 43 // Test for method float java.lang.StrictMath.abs(float)
44 assertTrue("Incorrect float abs value",
46 assertTrue("Incorrect float abs value",
355 // Test for method float java.lang.StrictMath.max(float, float)
356 assertTrue("Incorrect float max value", StrictMath.max(-1908897.600f,
358 assertTrue("Incorrect float max value", StrictMath.max(2.0f,
360 assertTrue("Incorrect float max value", StrictMath.max(-2.0f
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
ShapeTest.java 57 args = {float.class, float.class}
73 mockShape.resize(Float.MAX_VALUE, Float.MAX_VALUE);
74 assertEquals(Float.MAX_VALUE, mockShape.getWidth());
75 assertEquals(Float.MAX_VALUE, mockShape.getHeight());
85 args = {float.class, float.class}
162 protected void onResize(float width, float height)
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Float_info.java 19 * four-byte numeric (int and float) constants.<P>
22 * the float constant in IEEE 754 floating-point "single format" bit layout.
33 public float m_value;
36 public CONSTANT_Float_info (final float value)
55 return Float.toString (m_value);
  /external/jsr305/ri/src/main/java/javax/annotation/
Nonnegative.java 29 else if (value instanceof Float)
  /external/webkit/Source/WebKit/efl/DefaultTheme/widget/slider/
slider.edc 65 new Float:vy, Float:sy;
80 new Float:x, Float:y;
300 new Float:vx, Float:sx;
315 new Float:x, Float:y;
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLMock.java 48 float[] mGLModelViewMatrix = new float[16];
49 float[] mGLProjectionMatrix = new float[16];
53 HashMap<Integer, Float> mGLTexEnv0 = new HashMap<Integer, Float>();
54 HashMap<Integer, Float> mGLTexEnv1 = new HashMap<Integer, Float>();
72 public void glColor4f(float red, float green, float blue
    [all...]
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 37 primitiveTypes.put(Float.TYPE.getName(), Float.TYPE);
  /hardware/ti/omap3/dspbridge/inc/
std.h 46 *! 14-May-1996 gp: def'd out INT, FLOAT, and COMPLEX defines for WSX.
53 *! 22-Feb-1995 mf: Float is float for _SUN_ and _80_
232 typedef float Float;
234 typedef double Float;
  /hardware/ti/omap3/dspbridge/libbridge/inc/
std.h 46 *! 14-May-1996 gp: def'd out INT, FLOAT, and COMPLEX defines for WSX.
53 *! 22-Feb-1995 mf: Float is float for _SUN_ and _80_
234 typedef float Float;
236 typedef double Float;
  /external/valgrind/main/perf/
ffbench.c 35 follows: Float = double, Asize = 256, Passes = 20, CAPOUT not
146 /* The program may be run with Float defined as either float or
150 #define Float double /* Floating point type used in FFT */
169 Float data[];
175 Float tempi, tempr;
241 Float *fdata /* , *fd */ ;
248 fasize = ((fanum + 1) * 2 * sizeof(Float)); /* FFT array size */
251 fdata = (Float *) malloc(fasize);
  /frameworks/base/opengl/java/android/opengl/
Object3D.java 41 private float mBoundsMinX = Float.MAX_VALUE;
42 private float mBoundsMaxX = Float.MIN_VALUE;
43 private float mBoundsMinY = Float.MAX_VALUE;
44 private float mBoundsMaxY = Float.MIN_VALUE;
45 private float mBoundsMinZ = Float.MAX_VALUE
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 38 private float mDistFromNetLocation;
95 static TrackerEntry createEntry(Location loc, float distFromNetLocation) {
123 private void setDistFromNetLocation(float distFromNetLocation) {
151 float getDistFromNetLocation() {
221 Float accuracy = getNullableFloat(cursor, ACCURACY);
225 Float altitude = getNullableFloat(cursor, ALTITUDE);
229 Float bearing = getNullableFloat(cursor, BEARING);
233 Float speed = getNullableFloat(cursor, SPEED);
245 private static Float getNullableFloat(Cursor cursor, String colName) {
246 Float retValue = null
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/
EndianUtils.java 92 * Converts a "float" value between endian systems.
96 public static float swapFloat(float value) {
97 return Float.intBitsToFloat( swapInteger( Float.floatToIntBits( value ) ) );
234 * Writes a "float" value to a byte array at a given offset. The value is
240 public static void writeSwappedFloat(byte[] data, int offset, float value) {
241 writeSwappedInteger( data, offset, Float.floatToIntBits( value ) );
245 * Reads a "float" value from a byte array at a given offset. The value is
251 public static float readSwappedFloat(byte[] data, int offset) {
    [all...]

Completed in 3507 milliseconds

1 2 3 45 6 7 8 91011>>