Home
last modified time | relevance | path

Searched refs:aDouble (Results 1 – 4 of 4) sorted by relevance

/external/v8/test/webkit/
Dbitops-type-tag-expected.txt29 PASS aDouble>>27 is 0
30 PASS aDouble>>27|0 is 0
31 PASS aDouble>>0 is 100000000
32 PASS aDouble>>0|0 is 100000000
33 PASS aDouble|0 is 100000000
Dbitops-type-tag.js26 aDouble = 100000000.5;
/external/littlemock/tests/com/google/testing/littlemock/
DLittleMockTest.java113 public double aDouble(); in aDouble() method
164 assertEquals(0.0d, mFoo.aDouble()); in testDefaultReturnTypesForNewMocks()
483 doReturn(0.7).when(mFoo).aDouble(); in testDoReturn_PrimitiveTypes()
484 assertEquals(0.7, mFoo.aDouble()); in testDoReturn_PrimitiveTypes()
491 doThrow(new RuntimeException()).when(mFoo).aDouble(); in testDoThrow_SimpleException()
493 mFoo.aDouble(); in testDoThrow_SimpleException()
499 doThrow(new RuntimeException()).when(mFoo).aDouble(); in testDoThrow_IfItDoesntMatchItIsntThrown()
504 doThrow(new RuntimeException()).when(mFoo).aDouble(); in testDoThrow_KeepsThrowingForever()
506 mFoo.aDouble(); in testDoThrow_KeepsThrowingForever()
511 mFoo.aDouble(); in testDoThrow_KeepsThrowingForever()
[all …]
/external/icu/icu4c/source/i18n/
Dumsg.cpp532 double *aDouble; in umsg_vparse() local
552 aDouble = va_arg(ap, double*); in umsg_vparse()
553 if(aDouble){ in umsg_vparse()
554 *aDouble = args[i].getDouble(); in umsg_vparse()