/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/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/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...] |
/external/v8/test/benchmarks/ |
testcfg.py | 35 from testrunner.objects import testcase namespace 104 tests.append(testcase.TestCase(self, test)) 107 def GetFlagsForTestCase(self, testcase, context): 110 if testcase.path.startswith("kraken"): 111 result.append(os.path.join(self.testroot, "%s-data.js" % testcase.path)) 112 result.append(os.path.join(self.testroot, "%s.js" % testcase.path)) 113 elif testcase.path.startswith("octane"): 115 result.append(os.path.join(self.testroot, "%s.js" % testcase.path)) 116 if testcase.path.startswith("octane/gbemu") [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/tools/testrunner/local/ |
testsuite.py | 35 from ..objects import testcase namespace 57 self.tests = None # list of TestCase objects 72 def CommonTestName(self, testcase): 74 return testcase.path.replace("\\", "/") 76 return testcase.path 81 def VariantFlags(self, testcase, default_flags): 82 if testcase.outcomes and statusfile.OnlyStandardVariant(testcase.outcomes): 121 # Even for skipped tests, as the TestCase object stays around and 178 def GetFlagsForTestCase(self, testcase, context) [all...] |
/external/v8/test/fuzz-natives/ |
testcfg.py | 10 from testrunner.objects import testcase namespace 38 test = testcase.TestCase(self, name, flags) 46 def GetFlagsForTestCase(self, testcase, context): 47 name = testcase.path 49 return testcase.flags + [basefile] + context.mode_flags
|
/external/v8/test/intl/ |
testcfg.py | 31 from testrunner.objects import testcase namespace 50 test = testcase.TestCase(self, testname) 54 def GetFlagsForTestCase(self, testcase, context): 60 files.append(os.path.join(self.root, testcase.path + self.suffix())) 67 return testcase.flags + flags
|
/external/v8/test/test262-es6/ |
testcfg.py | 38 from testrunner.objects import testcase namespace 60 def CommonTestName(self, testcase): 61 return testcase.path.split(os.path.sep)[-1] 76 case = testcase.TestCase(self, testname) 80 def GetFlagsForTestCase(self, testcase, context): 81 return (testcase.flags + context.mode_flags + self.harness + 82 self.GetIncludesForTest(testcase) + ["--harmony"] + 83 [os.path.join(self.testroot, testcase.path + ".js")]) 101 def GetTestRecord(self, testcase) [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/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/v8/test/preparser/ |
testcfg.py | 34 from testrunner.objects import testcase namespace 68 test = testcase.TestCase(self, testname, flags=flags) 93 test = testcase.TestCase(self, f, flags=flags) 103 def GetFlagsForTestCase(self, testcase, context): 104 first = testcase.flags[0] 106 testcase.flags[0] = os.path.join(self.root, first) 107 return testcase.flags 109 def GetSourceForTest(self, testcase) [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...] |
/external/v8/test/mjsunit/ |
testcfg.py | 32 from testrunner.objects import testcase namespace 54 test = testcase.TestCase(self, testname) 58 def GetFlagsForTestCase(self, testcase, context): 59 source = self.GetSourceForTest(testcase) 76 testfilename = os.path.join(self.root, testcase.path + self.suffix()) 88 return testcase.flags + flags 90 def GetSourceForTest(self, testcase): 91 filename = os.path.join(self.root, testcase.path + self.suffix())
|
/external/v8/test/test262/ |
testcfg.py | 37 from testrunner.objects import testcase namespace 55 def CommonTestName(self, testcase): 56 return testcase.path.split(os.path.sep)[-1] 71 case = testcase.TestCase(self, testname) 75 def GetFlagsForTestCase(self, testcase, context): 76 return (testcase.flags + context.mode_flags + self.harness + 77 [os.path.join(self.testroot, testcase.path + ".js")]) 79 def GetSourceForTest(self, testcase): 80 filename = os.path.join(self.testroot, testcase.path + ".js" [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
GoNegReqPbcTestCase.java | 17 package com.android.cts.verifier.p2p.testcase;
|
GoNegReqPinTestCase.java | 17 package com.android.cts.verifier.p2p.testcase;
|
ReqTestCase.java | 16 package com.android.cts.verifier.p2p.testcase; 23 public abstract class ReqTestCase extends TestCase {
|