| /external/clang/test/SemaTemplate/ |
| recovery-crash.cpp | 15 void Test() {
|
| /external/compiler-rt/test/tsan/ |
| unaligned_race.cc | 2 #include "test.h" 105 NOINLINE void Test(bool main) { 124 Test(false); 132 Test(true);
|
| /external/icu/icu4c/source/samples/citer/ |
| citer.cpp | 36 class Test 43 void Test::TestUChariter() { 110 void Test::TestStringiter() { 180 Test t; 183 u_fprintf(out, "Test::TestUCharIter()\n"); 188 u_fprintf(out, "Test::TestStringchariter()\n");
|
| /external/javassist/sample/ |
| Test.java | 8 This program overwrites sample/Test.class (the class file of this 10 defined in class Test, then this program adds a copy of 11 f() to the class Test with name g(). Otherwise, this program does 12 not modify sample/Test.class at all. 16 % javap sample.Test 20 public class Test { 28 CtClass cc = pool.get("sample.Test"); 31 System.out.println("g() is already defined in sample.Test."); 35 * is not defined in sample.Test.
|
| /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/ |
| Test.java | 8 public class Test {
|
| /external/llvm/utils/lit/lit/formats/ |
| base.py | 5 import lit.Test 27 yield lit.Test.Test(testSuite, path_in_suite + (filename,), 36 # FIXME: Refactor into generic test for running some command on a directory 76 test = lit.Test.Test( 80 test.source_path = path 81 yield test 83 def createTempInput(self, tmp, test) [all...] |
| googletest.py | 5 import lit.Test 73 yield lit.Test.Test(testSuite, testPath, localConfig, file_path=execpath) 87 for test in self.getTestsInExecutable( 90 yield test 92 for test in self.getTestsInExecutable( 95 yield test 97 def execute(self, test, litConfig): 98 testPath,testName = os.path.split(test.getSourcePath()) 110 return lit.Test.PASS, ' [all...] |
| /external/parameter-framework/upstream/test/functional-tests/include/ |
| Test.hpp | 48 /** Value to test with a title. 51 * values and run the test for each of them. 59 * Each Test MUST specify a unique title, Ie all titles of a Tests MUST 64 struct Test 70 /** Use a vector to represent a collection of test input. 74 * for (auto &test : Tests<std::string>{ 75 * // ^~~~~~~~~~~ Test parameter type 77 * //^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Test parameters 81 * // ^~~~~~~~~~~ Value to test 82 * SECTION("Testing: " + test.title) [all...] |
| /external/regex-re2/re2/testing/ |
| compile_test.cc | 5 // Test prog.cc, compile.cc 9 #include "util/test.h" 23 struct Test { 28 static Test tests[] = { 104 TEST(TestRegexpCompileToProg, Simple) { 107 const re2::Test& t = tests[i]; 158 TEST(TestCompile, ByteRanges) {
|
| /external/testng/src/main/java/org/testng/annotations/ |
| Test.java | 11 * Mark a class or a method as part of the test. 17 public @interface Test { 41 * methods was not a SUCCESS, this test method will not be 49 * are guaranteed that all these methods will be run before the test method 51 * methods was not a SUCCESS, this test method will not be 60 * The maximum number of milliseconds this test should take. 66 * The maximum number of milliseconds that the total number of invocations on this test 91 * The name of the data provider for this test method. 99 * of the current test method or one of its super classes. 106 * If set to true, this test method will always be run even if it depend [all...] |
| /external/v8/test/fuzzer/ |
| regexp.cc | 14 #include "test/fuzzer/fuzzer-support.h" 18 void Test(v8::Isolate* isolate, i::Handle<i::JSRegExp> regexp, 67 Test(isolate, regexp, one_byte, results_array); 68 Test(isolate, regexp, two_byte, results_array); 69 Test(isolate, regexp, factory->empty_string(), results_array); 70 Test(isolate, regexp, source, results_array);
|
| /external/v8/test/mjsunit/compiler/ |
| division-by-constant.js | 106 // Define the function to test. 116 // Avoid deopt caused by overflow, we do not want to test this here. 125 function Test(ref, construct) { 132 Test(RefDivByConstI, ConstructDiv); 133 Test(RefModByConstI, ConstructMod); 134 Test(RefFlooringDivByConstI, ConstructFlooringDiv);
|
| /external/v8/test/preparser/ |
| testcfg.py | 44 def Test(name, source, expectation, extra_flags=[]): 51 test = testcase.TestCase(self, testname, flags=flags) 52 result.append(test) 60 Test(testname, testsource, expectation) 62 execfile(pathname, {"Test": Test, "Template": Template})
|
| /external/valgrind/drd/tests/ |
| std_list.cpp | 2 * Test program that triggers strcpy() from one thread and a memory allocation 4 * strcpy() intercept there is about 50% chance that this test program triggers 39 class Test { 61 Test *casted = reinterpret_cast<Test*>(instance); 70 Test *casted = reinterpret_cast<Test*>(instance); 82 Test instance1; 83 Test instance2;
|
| /external/valgrind/memcheck/tests/ |
| new_override.cpp | 5 class Test { 19 Test *toto; 23 toto = new Test[2];
|
| /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/ |
| Test.java | 18 import android.test.ActivityInstrumentationTestCase2; 22 com.android.multidexlegacytestapp/android.test.InstrumentationTestRunner 25 public class Test extends ActivityInstrumentationTestCase2<MainActivity> { 26 public Test() {
|
| /frameworks/base/libs/hwui/renderstate/ |
| Stencil.h | 47 * Enables stencil test. When the stencil test is enabled the stencil buffer is not written 49 * and GL_EQUAL for the test. A non-zero increment threshold causes the stencil to use that 50 * value as the reference value and GL_EQUAL for the test. 56 * test always succeeds and the value 0x1 is written in the stencil 58 * reference value and GL_EQUAL for the test. A non-zero increment threshold causes the stencil 59 * to use that value as the reference value and GL_EQUAL for the test. 64 * The test passes only when equal to the specified value. 69 * Used for debugging. The stencil test always passes and increments. 74 * Disables stencil test and write [all...] |
| /frameworks/base/tests/backup/ |
| backup_helper_test.cpp | 30 struct Test { 37 Test TESTS[] = { 51 Test* t; 104 printf("All %d test(s) passed\n", testCount);
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/ |
| test_frombuffer.py | 12 class Test(unittest.TestCase):
|
| test_simplesubclasses.py | 12 class Test(unittest.TestCase): 19 # Test if the return value of a callback is ignored
|
| /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
| test_frombuffer.py | 12 class Test(unittest.TestCase):
|
| test_simplesubclasses.py | 12 class Test(unittest.TestCase): 19 # Test if the return value of a callback is ignored
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
| test_frombuffer.py | 12 class Test(unittest.TestCase):
|
| test_simplesubclasses.py | 12 class Test(unittest.TestCase): 19 # Test if the return value of a callback is ignored
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
| test_frombuffer.py | 12 class Test(unittest.TestCase):
|