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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/annotation/
FloatRange.java 28 * Denotes that the annotated element should be a float or double in the given range
45 double from() default Double.NEGATIVE_INFINITY;
48 double to() default Double.POSITIVE_INFINITY;
  /frameworks/support/annotations/src/main/java/androidx/annotation/
FloatRange.java 29 * Denotes that the annotated element should be a float or double in the given range
44 double from() default Double.NEGATIVE_INFINITY;
47 double to() default Double.POSITIVE_INFINITY;
  /tools/metalava/stub-annotations/src/main/java/androidx/annotation/
FloatRange.java 33 double from() default Double.NEGATIVE_INFINITY;
35 double to() default Double.POSITIVE_INFINITY;
  /bionic/libm/upstream-freebsd/lib/msun/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...]
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/number/
IsNanTest.java 13 Matcher<Double> matcher = notANumber();
21 assertMatches(notANumber(), Double.NaN);
31 assertDoesNotMatch(notANumber(), Double.POSITIVE_INFINITY);
36 assertDescription("a double value of NaN", notANumber());
  /external/google-breakpad/src/testing/gtest/samples/
sample3_unittest.cc 91 static int Double(int n) {
99 const Queue<int> * const new_q = q->Map(Double);
  /external/googletest/googletest/samples/
sample3_unittest.cc 91 static int Double(int n) {
99 const Queue<int> * const new_q = q->Map(Double);
  /external/protobuf/gtest/samples/
sample3_unittest.cc 91 static int Double(int n) {
99 const Queue<int> * const new_q = q->Map(Double);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/
DoubleRenderer.java 36 public static void writeTo(IndentingWriter writer, double val) throws IOException {
37 writer.write(Double.toString(val));
  /external/v8/testing/gtest/samples/
sample3_unittest.cc 91 static int Double(int n) {
99 const Queue<int> * const new_q = q->Map(Double);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample3_unittest.cc 91 static int Double(int n) {
99 const Queue<int> * const new_q = q->Map(Double);
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/samples/
sample3_unittest.cc 91 static int Double(int n) {
99 const Queue<int> * const new_q = q->Map(Double);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/float_to_double/
Test_float_to_double.java 54 double r = 0x1.fffffeP+127d;
63 double r = 0x0.000002P-126d;
80 assertTrue(Double.isNaN(t.run(Float.NaN)));
88 assertTrue(Double.isInfinite(t.run(Float.POSITIVE_INFINITY)));
96 assertTrue(Double.isInfinite(t.run(Float.NEGATIVE_INFINITY)));
103 * @title type of argument - double
  /external/guava/guava-tests/benchmark/com/google/common/collect/
InternersBenchmark.java 30 interner.intern(Double.toHexString(Math.random()));
38 interner.intern(Double.toHexString(Math.random()));
46 Double.toHexString(Math.random()).intern();
  /libcore/luni/src/test/java/libcore/java/lang/
DoubleTest.java 24 assertEquals("0.008", Double.toString(0.008));
25 assertEquals("0.008366", Double.toString(0.008366));
27 assertEquals("0.009", Double.toString(0.009));
29 assertEquals("0.008567856012638986", Double.toString(0.008567856012638986));
30 assertEquals("0.010206713752229896", Double.toString(0.010206713752229896));
34 assertEquals(Double.NaN, Double.parseDouble("NaN"));
35 assertEquals(Double.NaN, Double.parseDouble("-NaN"));
36 assertEquals(Double.NaN, Double.parseDouble("+NaN"))
    [all...]
  /external/clang/test/SemaCXX/
pseudo-destructors.cpp 8 typedef double Double;
22 void f(A* a, Foo *f, int *i, double *d, int ii) {
47 i->Integer::~Double(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('Double' (aka 'double')) in pseudo-destructor expression}}
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/capitalize/
capitalize.cpp 26 bool Double(double d) { return out_.Double(d); }
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplereader/
simplereader.cpp 14 bool Double(double d) { cout << "Double(" << d << ")" << endl; return true; }
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
MetricsXmlSerializer.java 46 mXmlSerializer.text(Double.toString(summary.getValues()[0]));
  /art/test/645-checker-abs-simd/src/
Main.java 172 /// CHECK-START: void Main.doitDouble(double[]) loop_optimization (before)
178 /// CHECK-START-{ARM64,MIPS64}: void Main.doitDouble(double[]) loop_optimization (after)
188 private static void doitDouble(double[] x) {
315 // Set up double NaN and some others.
316 double[] xd = new double[16];
317 xd[0] = Double.longBitsToDouble(0x7ff0000000000001L);
318 xd[1] = Double.longBitsToDouble(0x7ff4000000000000L);
319 xd[2] = Double.longBitsToDouble(0x7ff8000000000000L);
320 xd[3] = Double.longBitsToDouble(0x7fffffffffffffffL)
    [all...]
  /external/clang/test/Sema/
overloadable.c 10 double *f(double) __attribute__((overloadable)); // okay, new
12 void test_f(int iv, float fv, double dv) {
15 double *dp = f(dv);
20 float *accept_funcptr(int (*)(int, double)) __attribute__((overloadable)); // \
23 void test_funcptr(int (*f1)(int, double),
39 double *f(int) __attribute__((overloadable)); // expected-error{{conflicting types for 'f'}}
41 double promote(float) __attribute__((__overloadable__)); // expected-note {{candidate}}
42 double promote(double) __attribute__((__overloadable__)); // expected-note {{candidate}
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/type/
PrimitiveType.java 42 Double ("Double");
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
FieldType.cs 41 /// The <c>double</c> field type.
43 Double,
  /external/valgrind/none/tests/amd64/
x87trigOOR.c 12 typedef double Double;
15 typedef struct { Double arg; Double st0; Double st1; UShort fpusw; } Res;
25 void do_fsin ( /*OUT*/Res* r, double d )
47 void do_fcos ( /*OUT*/Res* r, double d )
69 void do_fsincos ( /*OUT*/Res* r, double d )
91 void do_fptan ( /*OUT*/Res* r, double d )
114 void try ( char* name, void(*fn)(Res*,double), double d
    [all...]
  /external/valgrind/none/tests/x86/
x87trigOOR.c 12 typedef double Double;
15 typedef struct { Double arg; Double st0; Double st1; UShort fpusw; } Res;
25 void do_fsin ( /*OUT*/Res* r, double d )
47 void do_fcos ( /*OUT*/Res* r, double d )
69 void do_fsincos ( /*OUT*/Res* r, double d )
91 void do_fptan ( /*OUT*/Res* r, double d )
114 void try ( char* name, void(*fn)(Res*,double), double d
    [all...]

Completed in 544 milliseconds

1 2 3 4 5 6 7 8 91011>>