/external/v8/test/mjsunit/regress/ |
regress-1210.js | 39 function test() { function 47 for (var i = 0; i < 10; ++i) test(0); 48 %OptimizeFunctionOnNextCall(test); 49 test(0); 52 test(0);
|
regress-1592.js | 34 function test(a) { function 39 test(1); 40 test(1); 42 %OptimizeFunctionOnNextCall(test); 45 test(1);
|
regress-3218530.js | 34 function test() { function 39 test();
|
regress-643.js | 28 // Regression test for http://code.google.com/p/v8/issues/detail?id=643. 31 var test = {x:1}; 32 var a = test; 34 return test.x;
|
regress-760-1.js | 35 function test() { function 48 test()
|
regress-760-2.js | 33 function test() { function 48 test()
|
regress-swapelements.js | 46 function test() { function 55 test();
|
/external/valgrind/main/memcheck/tests/ |
trivialleak.c | 3 static void test() function 12 test();
|
/external/valgrind/main/none/tests/s390x/ |
cs.c | 6 test(int32_t op1_init, int32_t op2_init, int32_t op3_init, int expected_cc) function 47 test(0x10000000, 0x10000000, 0x12345678, 0); 48 test(0x10000000, 0x20000000, 0x12345678, 1);
|
csg.c | 6 test(int64_t op1_init, int64_t op2_init, int64_t op3_init, int expected_cc) function 47 test(0x1000000000000000ull, 0x1000000000000000ull, 0x1234567887654321ull, 0); 48 test(0x1000000000000000ull, 0x2000000000000000ull, 0x1234567887654321ull, 1);
|
cvb.c | 3 static unsigned long test[] ={ variable 101 for (i = 0; i < sizeof(test) / sizeof(test[0]); i++) 102 printf("%d\n", dec_to_hex(&test[i]));
|
/external/webrtc/test/ |
test_suite.h | 14 // Derived from Chromium's src/base/test/test_suite.h. 16 // Defines a basic test suite framework for running gtest based tests. You can 23 namespace test { namespace in namespace:webrtc 39 } // namespace test
|
/external/webrtc/test/testsupport/ |
fileutils.h | 17 // refer to test resource files in a portable way. 20 // also supported to use slash, so there's no need for #ifdef checks in test 24 // Assume we have the following code being used in a test source file: 25 // const std::string kInputFile = webrtc::test::ProjectRootPath() + 26 // "test/data/voice_engine/audio_long16.wav"; 32 // * Test project located in /home/user/webrtc/trunk/src/testproject 33 // * Test binary compiled as: 36 // the test binary is executed from standing in either of: 44 // * Test project located in C:\Users\user\webrtc\trunk\src\testproject 45 // * Test binary compiled as 70 namespace test { namespace in namespace:webrtc [all...] |
/external/webrtc/test/testsupport/mock/ |
mock_frame_reader.h | 19 namespace test { namespace in namespace:webrtc 30 } // namespace test
|
mock_frame_writer.h | 19 namespace test { namespace in namespace:webrtc 29 } // namespace test
|
/frameworks/base/core/java/android/test/ |
FlakyTest.java | 17 package android.test; 25 * This annotation can be used on an {@link android.test.InstrumentationTestCase}'s 26 * test methods. When the annotation is present, the test method is re-executed if 27 * the test fails. The total number of executions is specified by the tolerance and 34 * Indicates how many times a test can run and fail before being reported 35 * as a failed test. If the tolerance factor is less than 1, the test runs
|
RepetitiveTest.java | 17 package android.test; 25 * This annotation can be used on an {@link android.test.InstrumentationTestCase}'s test methods. 26 * When the annotation is present, the test method is executed the number of times specified by 35 * Indicates the number of times a test case should be run.
|
UiThreadTest.java | 17 package android.test; 25 * This annotation can be used on an {@link InstrumentationTestCase}'s test methods. 26 * When the annotation is present, the test method is executed on the application's
|
/frameworks/base/core/tests/utillib/src/android/test/ |
BandwidthTest.java | 17 package android.test; 23 * This annotation can be used on an {@link junit.framework.TestCase}'s test methods. When the 24 * annotation is present, the test method is profiled for bandwidth metrics and the results 26 * which is equivalent to tagging all test methods with this annotation.
|
/frameworks/base/test-runner/src/android/test/ |
AssertionFailedError.java | 17 package android.test;
|
NoExecTestResult.java | 16 package android.test; 22 * A benign test result that does no actually test execution, just runs 30 * Override parent to just inform listeners of test, 31 * and skip test execution. 34 protected void run(final TestCase test) { 35 startTest(test); 36 endTest(test);
|
TestSuiteProvider.java | 17 package android.test; 22 * Implementors will know how to get a test suite.
|
TimedTest.java | 17 package android.test; 23 * This annotation can be used on an {@link junit.framework.TestCase}'s test methods. When the 24 * annotation is present, the test method is timed and the results written through instrumentation 25 * output. It can also be used on the class itself, which is equivalent to tagging all test methods
|
/frameworks/base/tools/layoutlib/create/tests/mock_data/java/lang/ |
JavaClass.java | 21 public static String test = "test"; field in class:JavaClass
|
/frameworks/compile/mclinker/unittests/ |
LinkerTest.h | 18 namespace test { namespace in namespace:mcld 20 class LinkerTest : public ::testing::Test 23 // Constructor can do set-up work for all test here. 29 // SetUp() will be called immediately before each test. 32 // TearDown() will be called immediately after each test. 36 } // namespace of test
|