HomeSort by relevance Sort by last modified time
    Searched full:double (Results 176 - 200 of 5175) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/location/java/android/location/
IGeocodeProvider.aidl 29 String getFromLocation(double latitude, double longitude, int maxResults,
33 double lowerLeftLatitude, double lowerLeftLongitude,
34 double upperRightLatitude, double upperRightLongitude, int maxResults,
  /cts/tools/vm-tests/src/dot/junit/opcodes/neg_double/
Test_neg_double.java 59 * @title Types of arguments - long, double. Dalvik doens't distinguish 64-bits types internally,
60 * so this operation of long and double makes no sense but shall not crash the VM.
73 * @title Argument = Double.NaN
77 assertEquals(Double.NaN, t.run(Double.NaN));
81 * @title Argument = Double.NEGATIVE_INFINITY
85 assertEquals(Double.POSITIVE_INFINITY, t.run(Double.NEGATIVE_INFINITY));
89 * @title Argument = Double.POSITIVE_INFINITY
93 assertEquals(Double.NEGATIVE_INFINITY, t.run(Double.POSITIVE_INFINITY))
    [all...]
  /dalvik/libcore/text/src/main/java/java/text/
ChoiceFormat.java 41 * double[] limits = {1, 2, 3, 4, 5, 6, 7};
44 * double[] limits2 = {0, 1, ChoiceFormat.nextDouble(1)};
49 * ChoiceFormat.nextDouble(double) allows to get the double following the one
74 private double[] choiceLimits;
79 * Constructs a new {@code ChoiceFormat} with the specified double values
81 * {@link #format(double, StringBuffer, FieldPosition) format} with a double
96 public ChoiceFormat(double[] limits, String[] formats) {
123 double[] limits = new double[5]
    [all...]
  /external/stlport/src/
num_put_float.cpp 130 static inline bool _Stl_is_nan_or_inf(double x)
136 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && ( copysign(1., x) < 0 ); }
137 static inline bool _Stl_is_inf(double x) { return isinf(x); }
138 // inline bool _Stl_is_neg_inf(double x) { return isinf(x) < 0; }
139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; }
143 static inline bool _Stl_is_nan_or_inf(double x) { return IsNANorINF(x); }
144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); }
145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); }
146 static inline bool _Stl_is_neg_nan(double x) { return IsNegNAN(x); }
148 static inline bool _Stl_is_nan_or_inf(double x) { return !_finite(x);
    [all...]
  /external/opencore/doc/oscl_html/
oscl__math_8h-source.html 27 00036 <a class="code" href="group__osclbase.html#a84">OSCL_COND_IMPORT_REF</a> <span class="keywordtype">double</span> <a class="code" href="group__osclutil.html#a23">oscl_log</a>(<span class="keywordtype">double</span> value);
28 00042 <a class="code" href="group__osclbase.html#a84">OSCL_COND_IMPORT_REF</a> <span class="keywordtype">double</span> <a class="code" href="group__osclutil.html#a24">oscl_log10</a>(<span class="keywordtype">double</span> value);
29 00048 <a class="code" href="group__osclbase.html#a84">OSCL_COND_IMPORT_REF</a> <span class="keywordtype">double</span> <a class="code" href="group__osclutil.html#a25">oscl_sqrt</a>(<span class="keywordtype">double</span> value);
30 00055 <a class="code" href="group__osclbase.html#a84">OSCL_COND_IMPORT_REF</a> <span class="keywordtype">double</span> <a class="code" href="group__osclutil.html#a26">oscl_pow</a>(<span class="keywordtype">double</span> x, <span class="keywordtype">double</span> y);
31 00061 <a class="code" href="group__osclbase.html#a84">OSCL_COND_IMPORT_REF</a> <span class="keywordtype">double</span> <a class="code" href="group__osclutil.html#a27">oscl_exp</a>(<span class="keywordtype">doub (…)
    [all...]
oscl__math_8h.html 20 <tr><td nowrap align=right valign=top>OSCL_COND_IMPORT_REF double&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a23">oscl_log</a> (double value)</td></tr>
21 <tr><td nowrap align=right valign=top>OSCL_COND_IMPORT_REF double&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a24">oscl_log10</a> (double value)</td></tr>
22 <tr><td nowrap align=right valign=top>OSCL_COND_IMPORT_REF double&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a25">oscl_sqrt</a> (double value)</td></tr>
23 <tr><td nowrap align=right valign=top>OSCL_COND_IMPORT_REF double&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a26">oscl_pow</a> (double x, double y)</td></tr>
24 <tr><td nowrap align=right valign=top>OSCL_COND_IMPORT_REF double&nbsp;</td><td valign=bottom><a class="el" href="group__osclutil.html#a27">oscl_exp</a> (double val (…)
    [all...]
  /bionic/libm/bsdsrc/
mathimpl.h 47 * IEEE double variable to zero. It must be expression-like for syntactic
55 _b_trunc(volatile double *_dp)
63 struct Double {
64 double a;
65 double b;
71 double __exp__D(double, double);
72 struct Double __log__D(double);
    [all...]
  /dalvik/libcore/json/src/main/java/org/json/
JSON.java 23 static double checkDouble(double d) throws JSONException {
24 if (Double.isInfinite(d) || Double.isNaN(d)) {
40 static Double toDouble(Object value) {
41 if (value instanceof Double) {
42 return (Double) value;
47 return Double.valueOf((String) value);
61 return (int) Double.parseDouble((String) value);
75 return (long) Double.parseDouble((String) value)
    [all...]
  /external/webkit/WebCore/platform/
Timer.h 43 void start(double nextFireInterval, double repeatInterval);
45 void startRepeating(double repeatInterval) { start(repeatInterval, repeatInterval); }
46 void startOneShot(double interval) { start(interval, 0); }
51 double nextFireInterval() const;
52 double repeatInterval() const { return m_repeatInterval; }
54 void augmentRepeatInterval(double delta) { setNextFireTime(m_nextFireTime + delta); m_repeatInterval += delta; }
64 void setNextFireTime(double);
76 double m_nextFireTime; // 0 if inactive
77 double m_repeatInterval; // 0 if not repeatin
    [all...]
  /frameworks/base/core/java/android/gesture/
InstanceLearner.java 31 double score1 = object1.score;
32 double score2 = object2.score;
48 TreeMap<String, Double> label2score = new TreeMap<String, Double>();
54 double distance;
60 double weight;
62 weight = Double.MAX_VALUE;
66 Double score = label2score.get(sample.label);
72 // double sum = 0;
74 double score = label2score.get(name)
    [all...]
  /system/core/libacc/tests/data/
flops.c 11 printf("double op double:\n");
23 printf("double op float:\n");
29 printf("double op int:\n");
35 printf("int op double:\n");
42 void comparisonTestdd(double a, double b) {
48 printf("double op double:\n");
55 void comparisonTestdf(double a, float b)
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/div_double/
Test_div_double.java 61 * @title Types of arguments - long, double. Dalvik doens't distinguish 64-bits types internally,
62 * so this division of long and double makes no sense but shall not crash the VM.
73 * @title Arguments = Double.POSITIVE_INFINITY,
74 * Double.NEGATIVE_INFINITY
78 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY,
79 Double.NEGATIVE_INFINITY));
83 * @title Arguments = Double.POSITIVE_INFINITY, -2.7d
87 assertEquals(Double.NEGATIVE_INFINITY, t.run(Double.POSITIVE_INFINITY
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/div_double_2addr/
Test_div_double_2addr.java 61 * @title Types of arguments - long, double. Dalvik doens't distinguish 64-bits types internally,
62 * so this division of long and double makes no sense but shall not crash the VM.
73 * @title Arguments = Double.POSITIVE_INFINITY,
74 * Double.NEGATIVE_INFINITY
78 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY,
79 Double.NEGATIVE_INFINITY));
83 * @title Arguments = Double.POSITIVE_INFINITY, -2.7d
87 assertEquals(Double.NEGATIVE_INFINITY, t.run(Double.POSITIVE_INFINITY
    [all...]
  /external/srec/srec/clib/
matrix_i.c 41 void lubksb(double **mat, int dim, int *index, double *b);
42 int ludcmp(double **mat, int dim, int *index);
46 double *col, **input;
49 double sum;
56 col = (double *) CALLOC(dim, sizeof(double), "clib.col");
57 input = (double **) CALLOC(dim, sizeof(double *), "clib.input_imatrix");
60 input[ii] = (double *) CALLOC(dim, sizeof(double), "clib.input_imatrix[]")
    [all...]
  /external/guava/javadoc/com/google/common/primitives/
Doubles.html 104 Static utility methods pertaining to <code>double</code> primitives, that are not
105 already found in either <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang"><CODE>Double</CODE></A> or <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Arrays.html?is-external=true" title="class or interface in java.util"><CODE>Arrays</CODE></A>.
129 <CODE>static&nbsp;<A HREF="http://java.sun.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</A>&lt;<A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Double.html?is-external=true" title="class or interface in java.lang">Double</A>&gt;</CODE></FONT></TD>
130 <TD><CODE><B><A HREF="../../../../com/google/common/primitives/Doubles.html#asList(double...)">asList</A></B>(double...&nbsp;backingArray)</CODE>
138 <TD><CODE><B><A HREF="../../../../com/google/common/primitives/Doubles.html#compare(double, double)">compare</A></B>(double&nbsp;a
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/dastore/
Test_dastore.java 30 double[] arr = new double[2];
40 double[] arr = new double[2];
50 double[] arr = new double[2];
77 double[] arr = new double[2];
114 * @title types of arguments - array, double,
115 * double
    [all...]
  /external/fdlibm/
s_frexp.c 17 * return a double fp quantity x such that 0.5 <= |x| <1.0
27 static const double
29 static double
34 double ieee_frexp(double x, int *eptr)
36 double ieee_frexp(x, eptr)
37 double x; int *eptr;
  /frameworks/base/awt/java/awt/geom/
RectangularShape.java 48 public abstract double getX();
55 public abstract double getY();
62 public abstract double getWidth();
69 public abstract double getHeight();
80 * Sets the data for the bounding rectangle in terms of double values.
91 public abstract void setFrame(double x, double y, double w, double h);
99 public double getMinX()
    [all...]
  /dalvik/tests/003-omnibus-opcodes/src/
FloatMath.java 12 double d;
34 /* float --> double */
36 d = (double) f;
39 /* double --> int */
48 /* double --> long */
57 /* double --> float */
80 /* int --> double */
82 d = (double) i;
86 d = (double) i;
107 /* long --> double */
    [all...]
  /external/proguard/src/proguard/gui/
boilerplate.pro 110 public static double sin(double);
111 public static double cos(double);
112 public static double tan(double);
113 public static double asin(double);
114 public static double acos(double);
    [all...]
  /external/icu4c/test/intltest/
tsputil.cpp 35 double pinf = uprv_getInfinity();
36 double ninf = -uprv_getInfinity();
37 double nan = uprv_getNaN();
38 double pzero = 0.0;
39 double nzero = 0.0;
81 PUtilTest::remainderTest(double x, double y, double exp)
83 double result = uprv_IEEEremainder(x,y);
101 double pinf = uprv_getInfinity()
    [all...]
  /external/webkit/JavaScriptCore/wtf/
DateMath.h 57 double parseDateFromNullTerminatedCharacters(const char* dateString);
58 double timeClip(double);
60 inline double jsCurrentTime()
69 const double hoursPerDay = 24.0;
70 const double minutesPerHour = 60.0;
71 const double secondsPerHour = 60.0 * 60.0;
72 const double secondsPerMinute = 60.0;
73 const double msPerSecond = 1000.0;
74 const double msPerMinute = 60.0 * 1000.0
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSNumberCell.h 35 extern const double NaN;
36 extern const double Inf;
39 JSValue jsNumberCell(ExecState*, double);
52 friend JSValue jsNumberCell(JSGlobalData*, double);
53 friend JSValue jsNumberCell(ExecState*, double);
56 double value() const { return m_value; }
59 virtual bool getPrimitiveNumber(ExecState*, double& number, JSValue& value);
61 virtual double toNumber(ExecState*) const;
82 JSNumberCell(JSGlobalData* globalData, double value)
88 JSNumberCell(ExecState* exec, double value
    [all...]
  /external/webkit/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp 57 typedef double Vector4[4];
58 typedef double Vector3[3];
60 const double SMALL_NUMBER = 1.e-8;
70 // double = determinant2x2(double a, double b, double c, double d)
74 static double determinant2x2(double a, double b, double c, double d
    [all...]
  /cts/tools/dx-tests/src/dxc/junit/opcodes/dneg/
Test_dneg.java 59 * @title Argument = Double.NaN
63 assertEquals(Double.NaN, t.run(Double.NaN));
67 * @title Argument = Double.NEGATIVE_INFINITY
71 assertEquals(Double.POSITIVE_INFINITY, t.run(Double.NEGATIVE_INFINITY));
75 * @title Argument = Double.POSITIVE_INFINITY
79 assertEquals(Double.NEGATIVE_INFINITY, t.run(Double.POSITIVE_INFINITY));
83 * @title Argument = Double.MAX_VALU
    [all...]

Completed in 245 milliseconds

1 2 3 4 5 6 78 91011>>