/external/clang/test/CodeGen/ |
builtin-recursive.cpp | 7 void testcase(void) { function
|
/external/google-breakpad/src/processor/ |
static_address_map_unittest.cc | 54 for (int testcase = 0; testcase < kNumberTestCases; ++testcase) { 55 testdata[testcase] = new int[testsize[testcase]]; 75 for (int testcase = 0; testcase < kNumberTestCases; ++testcase) { 76 for (int data_item = 0; data_item < testsize[testcase]; ++data_item) { 78 sstream << "test " << testdata[testcase][data_item] 157 int testcase = 0; local 176 int testcase = 1; local 195 int testcase = 2; local 214 int testcase = 3; local [all...] |
static_map_unittest.cc | 142 int testcase = 0; local 145 map_data[testcase] = 146 serializer.Serialize(std_map[testcase], &size[testcase]); 147 test_map[testcase] = TestMap(map_data[testcase]); 148 ++testcase; 151 std_map[testcase].insert(std::make_pair(2, 8)); 152 map_data[testcase] = 153 serializer.Serialize(std_map[testcase], &size[testcase]) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/ |
__init__.py | 19 from gslib.tests.testcase.integration_testcase import GsUtilIntegrationTestCase 20 from gslib.tests.testcase.unit_testcase import GsUtilUnitTestCase
|
/external/icu/icu4c/source/test/perf/unisetperf/ |
unisetperf.cpp | 134 Command(const UnicodeSetPerformanceTest &testcase) : testcase(testcase) {} 144 return testcase.countInputCodePoints+testcase.spanCount-1; 148 return testcase.spanCount; 151 const UnicodeSetPerformanceTest &testcase; member in class:Command 156 Contains(const UnicodeSetPerformanceTest &testcase) : Command(testcase) { 162 if(testcase.set.contains(c)) [all...] |
/external/icu/icu4c/source/test/perf/utrie2perf/ |
utrie2perf.cpp | 95 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {} 104 return testcase.countInputCodePoints; 109 const UTrie2PerfTest &testcase; member in class:Command 115 CheckFCD(const UTrie2PerfTest &testcase) : Command(testcase) {} 117 static UPerfFunction* get(const UTrie2PerfTest &testcase) { 118 return new CheckFCD(testcase); 122 qcResult=unorm_quickCheck(testcase.getBuffer(), testcase.getBufferLen() [all...] |
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/ |
test_mb.py | 19 import gslib.tests.testcase as testcase 20 from gslib.tests.testcase.integration_testcase import SkipForS3 24 class TestMb(testcase.GsUtilIntegrationTestCase):
|
test_trace.py | 20 import gslib.tests.testcase as testcase 21 from gslib.tests.testcase.integration_testcase import SkipForS3 26 class TestTraceTokenOption(testcase.GsUtilIntegrationTestCase):
|
test_gsutil.py | 20 import gslib.tests.testcase as testcase 23 class TestGsUtil(testcase.GsUtilIntegrationTestCase):
|
/external/v8/test/benchmarks/ |
testcfg.py | 34 from testrunner.objects import testcase 41 def FilterVariantsByTest(self, testcase): 42 if testcase.outcomes and statusfile.OnlyStandardVariant( 43 testcase.outcomes): 47 def GetFlagSets(self, testcase, variant): 117 tests.append(testcase.TestCase(self, test)) 120 def GetFlagsForTestCase(self, testcase, context): 123 if testcase.path.startswith("kraken"): 124 result.append(os.path.join(self.testroot, "%s-data.js" % testcase.path) [all...] |
/build/blueprint/tests/ |
test.sh | 13 function testcase() function 54 testcase start 62 testcase all 67 testcase primary 71 testcase none 77 testcase manifest 85 testcase start2 92 testcase regen 99 testcase start_add_tests 105 testcase rebuild_tes [all...] |
/external/v8/test/test262/ |
testcfg.py | 40 from testrunner.objects import testcase 83 def GetFlagSets(self, testcase, variant): 84 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes): 89 test_record = self.suite.GetTestRecord(testcase) 122 case = testcase.TestCase(self, testname) 126 def GetFlagsForTestCase(self, testcase, context): 127 return (testcase.flags + context.mode_flags + self.harness + 128 self.GetIncludesForTest(testcase) + ["--harmony"] [all...] |
/external/protobuf/gtest/test/ |
gtest_xml_output_unittest.py | 59 <testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/> 62 <testcase name="Fails" status="run" time="*" classname="FailedTest"> 66 </testcase> 69 <testcase name="Succeeds" status="run" time="*" classname="MixedResultTest"/> 70 <testcase name="Fails" status="run" time="*" classname="MixedResultTest"> 77 </testcase> 78 <testcase name="DISABLED_test" status="notrun" time="*" classname="MixedResultTest"/> 81 <testcase name="OutputsCData" status="run" time="*" classname="XmlQuotingTest"> 85 </testcase> 88 <testcase name="InvalidCharactersInMessage" status="run" time="*" classname="InvalidCharactersTest" [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/ |
GoNegRequesterTestActivity.java | 20 import com.android.cts.verifier.p2p.testcase.GoNegReqTestSuite; 21 import com.android.cts.verifier.p2p.testcase.ReqTestCase;
|
P2pClientTestActivity.java | 20 import com.android.cts.verifier.p2p.testcase.P2pClientTestSuite; 21 import com.android.cts.verifier.p2p.testcase.ReqTestCase;
|
RequesterTestListActivity.java | 30 import com.android.cts.verifier.p2p.testcase.ReqTestCase; 31 import com.android.cts.verifier.p2p.testcase.TestCase; 80 for (ReqTestCase testcase: getTestSuite(this)) { 81 addTestCase(adapter, testcase); 97 * @param testcase 99 private void addTestCase(ArrayTestListAdapter adapter, TestCase testcase) { 101 intent.putExtra(TestCase.EXTRA_TEST_NAME, 102 testcase.getTestId()) [all...] |
ServiceRequesterTestActivity.java | 20 import com.android.cts.verifier.p2p.testcase.ReqTestCase; 21 import com.android.cts.verifier.p2p.testcase.ServReqTestSuite;
|
/external/v8/test/preparser/ |
testcfg.py | 34 from testrunner.objects import testcase 73 test = testcase.TestCase(self, testname, flags=flags) 98 test = testcase.TestCase(self, f, flags=flags) 108 def GetFlagsForTestCase(self, testcase, context): 109 first = testcase.flags[0] 111 testcase.flags[0] = os.path.join(self.root, first) 112 source = self.GetSourceForTest(testcase) 119 result.append(os.path.join(self.root, testcase.path + ".js") [all...] |
/external/v8/test/simdjs/ |
testcfg.py | 11 from testrunner.objects import testcase 25 testcase.TestCase(self, 'shell_test_runner'), 33 testcase.TestCase(self, 'benchmarks/' + name)) 36 def GetFlagsForTestCase(self, testcase, context): 37 return (testcase.flags + context.mode_flags + 40 os.path.join(self.testroot, testcase.path + ".js"), 43 def GetSourceForTest(self, testcase): 44 filename = os.path.join(self.testroot, testcase.path + ".js" [all...] |
/external/gtest/test/ |
gtest_xml_output_unittest.py | 63 <testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/> 66 <testcase name="Fails" status="run" time="*" classname="FailedTest"> 70 </testcase> 73 <testcase name="Succeeds" status="run" time="*" classname="MixedResultTest"/> 74 <testcase name="Fails" status="run" time="*" classname="MixedResultTest"> 81 </testcase> 82 <testcase name="DISABLED_test" status="notrun" time="*" classname="MixedResultTest"/> 85 <testcase name="OutputsCData" status="run" time="*" classname="XmlQuotingTest"> 89 </testcase> 92 <testcase name="InvalidCharactersInMessage" status="run" time="*" classname="InvalidCharactersTest" [all...] |
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
gtest_xml_output_unittest.py | 63 <testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/> 66 <testcase name="Fails" status="run" time="*" classname="FailedTest"> 70 </testcase> 73 <testcase name="Succeeds" status="run" time="*" classname="MixedResultTest"/> 74 <testcase name="Fails" status="run" time="*" classname="MixedResultTest"> 81 </testcase> 82 <testcase name="DISABLED_test" status="notrun" time="*" classname="MixedResultTest"/> 85 <testcase name="OutputsCData" status="run" time="*" classname="XmlQuotingTest"> 89 </testcase> 92 <testcase name="InvalidCharactersInMessage" status="run" time="*" classname="InvalidCharactersTest" [all...] |
/external/v8/tools/testrunner/local/ |
testsuite.py | 35 from ..objects import testcase 73 def FilterVariantsByTest(self, testcase): 74 if testcase.outcomes and statusfile.OnlyStandardVariant( 75 testcase.outcomes): 77 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes): 81 def GetFlagSets(self, testcase, variant): 82 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes): 110 self.tests = None # list of TestCase object [all...] |
/external/google-breakpad/src/testing/gtest/test/ |
gtest_xml_output_unittest.py | 62 <testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/> 65 <testcase name="Fails" status="run" time="*" classname="FailedTest"> 69 </testcase> 72 <testcase name="Succeeds" status="run" time="*" classname="MixedResultTest"/> 73 <testcase name="Fails" status="run" time="*" classname="MixedResultTest"> 80 </testcase> 81 <testcase name="DISABLED_test" status="notrun" time="*" classname="MixedResultTest"/> 84 <testcase name="OutputsCData" status="run" time="*" classname="XmlQuotingTest"> 88 </testcase> 91 <testcase name="InvalidCharactersInMessage" status="run" time="*" classname="InvalidCharactersTest" [all...] |
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_xml_output_unittest.py | 62 <testcase name="Succeeds" status="run" time="*" classname="SuccessfulTest"/> 65 <testcase name="Fails" status="run" time="*" classname="FailedTest"> 69 </testcase> 72 <testcase name="Succeeds" status="run" time="*" classname="MixedResultTest"/> 73 <testcase name="Fails" status="run" time="*" classname="MixedResultTest"> 80 </testcase> 81 <testcase name="DISABLED_test" status="notrun" time="*" classname="MixedResultTest"/> 84 <testcase name="OutputsCData" status="run" time="*" classname="XmlQuotingTest"> 88 </testcase> 91 <testcase name="InvalidCharactersInMessage" status="run" time="*" classname="InvalidCharactersTest" [all...] |
/external/icu/icu4c/source/test/perf/utfperf/ |
utfperf.cpp | 121 Command(const UtfPerformanceTest &testcase) 122 : testcase(testcase), 123 input(testcase.getBuffer()), inputLength(testcase.getBufferLen()), 125 cnv=ucnv_open(testcase.charset, &errorCode); 127 fprintf(stderr, "error opening converter for \"%s\" - %s\n", testcase.charset, u_errorName(errorCode)); 142 const UtfPerformanceTest &testcase; member in class:Command 152 Roundtrip(const UtfPerformanceTest &testcase) : Command(testcase) {} [all...] |