/external/valgrind/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]));
|
laa.c | 6 test(int32_t op1_init, int32_t op2_init, int32_t op3_init, int expected_cc) function 43 /* the test for cc = 3 is left as an exercise for the reader. */ 48 test(0, 0, 0, 0); 49 test(-1, -1, -1, 1); 50 test(0x10000000, 0x10000000, 0x12345678, 2); 51 test(0x10000000, 0x20000000, 0x12345678, 2); 53 test(-1, 3, -3, 0); 54 test(0, -1, -1, 1); 55 test(-1, 0x10000000, 0x12345678, 2); 56 test(0x10000000, 0x7fffffff, 1, 3) [all...] |
/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/templates/ |
headerTest.h | 18 namespace test { namespace in namespace:mcld 20 class ${class_name}Test : public ::testing::Test 23 // Constructor can do set-up work for all test here. 24 ${class_name}Test(); 27 virtual ~${class_name}Test(); 29 // SetUp() will be called immediately before each test. 32 // TearDown() will be called immediately after each test. 36 } // namespace of test
|
/frameworks/compile/mclinker/unittests/ |
ELFBinaryReaderTest.h | 17 namespace test { namespace in namespace:mcld 19 class ELFBinaryReaderTest : public ::testing::Test { 21 // Constructor can do set-up work for all test here. 27 // SetUp() will be called immediately before each test. 30 // TearDown() will be called immediately after each test. 34 } // namespace of test
|
GraphTest.h | 15 namespace test { namespace in namespace:mcld 17 class GraphTest : public ::testing::Test { 19 // Constructor can do set-up work for all test here. 25 // SetUp() will be called immediately before each test. 28 // TearDown() will be called immediately after each test. 32 } // namespace of test
|
LinkerTest.h | 18 namespace test { namespace in namespace:mcld 20 class LinkerTest : public ::testing::Test { 22 // Constructor can do set-up work for all test here. 28 // SetUp() will be called immediately before each test. 31 // TearDown() will be called immediately after each test. 35 } // namespace of test
|
SystemUtilsTest.h | 15 namespace test { namespace in namespace:mcld 17 class SystemUtilsTest : public ::testing::Test { 19 // Constructor can do set-up work for all test here. 25 // SetUp() will be called immediately before each test. 28 // TearDown() will be called immediately after each test. 32 } // namespace of test
|
/hardware/intel/common/libva/test/basic/ |
test_01.c | 37 void test() function
|
test_02.c | 34 void test() function
|
/libcore/support/src/test/java/tests/security/ |
TestHelper.java | 20 public abstract void test(T testObject); method in class:TestHelper
|