/external/chromium_org/v8/test/mjsunit/ |
keyed-call-generic.js | 30 function testOne(receiver, key, result) { 57 testOne(0, toStringNonSymbol, '0'); 59 testOne(1, 'toString', '1'); 60 testOne('1', 'toString', '1'); 61 testOne(1.0, 'toString', '1'); 63 testOne(1, 'type', 'object'); 64 testOne(2.3, 'type', 'object'); 65 testOne('x', 'type', 'object'); 66 testOne(true, 'type', 'object'); 67 testOne(false, 'type', 'object') [all...] |
/external/v8/test/mjsunit/ |
keyed-call-generic.js | 30 function testOne(receiver, key, result) { 57 testOne(0, toStringNonSymbol, '0'); 59 testOne(1, 'toString', '1'); 60 testOne('1', 'toString', '1'); 61 testOne(1.0, 'toString', '1'); 63 testOne(1, 'type', 'object'); 64 testOne(2.3, 'type', 'object'); 65 testOne('x', 'type', 'object'); 66 testOne(true, 'type', 'object'); 67 testOne(false, 'type', 'object') [all...] |
/frameworks/base/test-runner/tests/src/android/test/ |
TestCaseUtilTest.java | 43 assertTrue(testCaseNames.get(0).endsWith("testOne")); 66 public void testOne() throws Exception { 73 testCase.setName("testOne"); 77 public void testOne() throws Exception {
|
AndroidTestRunnerTest.java | 66 assertEquals("testOne", testCases.get(0).getName()); 78 assertTrue(testListenerStub.saw("testOne")); 149 assertEquals(Arrays.asList("testOne"), testNames); 159 assertEquals(Arrays.asList("testOne", "testOne", "testTwo"), testNames); 232 public void testOne() throws Exception { 237 public void testOne() throws Exception {
|
/external/skia/tests/ |
PathOpsCubicLineIntersectionTest.cpp | 45 static void testOne(skiatest::Reporter* reporter, int iIndex) { 82 testOne(reporter, iIndex); 89 testOne(reporter, iIndex);
|
PathOpsLineIntersectionTest.cpp | 88 static void testOne(skiatest::Reporter* reporter, const SkDLine& line1, const SkDLine& line2) { 191 testOne(reporter, line1, line2); 207 testOne(reporter, tests[index][0], tests[index][1]); 208 testOne(reporter, tests[1][0], tests[1][1]);
|
PathOpsSkpClipTest.cpp | 78 test.testOne(); 84 testOne(); 87 void testOne(); 363 void TestResult::testOne() { 678 state.testOne();
|
PathOpsAngleTest.cpp | 314 static void testOne(skiatest::Reporter* reporter, const SortSetTests& test) { 397 testOne(reporter, test); 405 testOne(reporter, test);
|
SkpSkGrTest.cpp | 86 test.testOne(); 95 testOne(); 98 void testOne(); 378 void TestResult::testOne() { 667 data->fResult.testOne(); 734 encoder.testOne();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
test_setups.py | 210 def testOne(self): 211 results.append('Test1.testOne') 222 def testOne(self): 223 results.append('Test2.testOne') 234 def testOne(self): 235 results.append('Test3.testOne') 244 first = unittest.TestSuite((Test1('testOne'),)) 246 third = unittest.TestSuite((Test2('testOne'),)) 248 fifth = unittest.TestSuite((Test3('testOne'),)) 259 'Test1.testOne', 'Test1.testTwo', 'teardown 1' [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
test_setups.py | 210 def testOne(self): 211 results.append('Test1.testOne') 222 def testOne(self): 223 results.append('Test2.testOne') 234 def testOne(self): 235 results.append('Test3.testOne') 244 first = unittest.TestSuite((Test1('testOne'),)) 246 third = unittest.TestSuite((Test2('testOne'),)) 248 fifth = unittest.TestSuite((Test3('testOne'),)) 259 'Test1.testOne', 'Test1.testTwo', 'teardown 1' [all...] |
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
BitwiseStreamsTest.java | 34 public void testOne() throws Exception {
|