/external/chromium_org/v8/test/mjsunit/regress/ |
H A D | regress-1513.js | 31 function testcase() { function 44 testcase();
|
/external/clang/test/CodeGen/ |
H A D | builtin-recursive.cc | 7 void testcase(void) { function
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-1513.js | 31 function testcase() { function 44 testcase();
|
/external/chromium_org/v8/tools/testrunner/objects/ |
H A D | workpacket.py | 30 from . import testcase namespace 87 tests = [ testcase.TestCase.UnpackTask(t) for t in packed["tests"] ]
|
/external/chromium_org/v8/test/intl/ |
H A D | 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/chromium_org/v8/test/benchmarks/ |
H A D | 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"): 118 elif testcase [all...] |
/external/chromium_org/v8/test/cctest/ |
H A D | testcfg.py | 34 from testrunner.objects import testcase namespace 69 test = testcase.TestCase(self, raw_test, dependency=dependency) 74 def GetFlagsForTestCase(self, testcase, context): 75 testname = testcase.path.split(os.path.sep)[-1] 77 serialization_file += ''.join(testcase.flags).replace('-', '_') 78 return (testcase.flags + [testcase.path] + context.mode_flags +
|
/external/chromium_org/v8/test/mjsunit/ |
H A D | 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/chromium_org/v8/test/message/ |
H A D | testcfg.py | 34 from testrunner.objects import testcase namespace 55 test = testcase.TestCase(self, testname) 59 def GetFlagsForTestCase(self, testcase, context): 60 source = self.GetSourceForTest(testcase) 67 result.append(os.path.join(self.root, testcase.path + ".js")) 68 return testcase.flags + result 70 def GetSourceForTest(self, testcase): 71 filename = os.path.join(self.root, testcase.path + self.suffix()) 109 def StripOutputForTransmit(self, testcase):
|
/external/chromium_org/v8/test/mozilla/ |
H A D | testcfg.py | 35 from testrunner.objects import testcase namespace 86 case = testcase.TestCase(self, testname) 90 def GetFlagsForTestCase(self, testcase, context): 95 testfilename = testcase.path + ".js" 104 return testcase.flags + result 106 def GetSourceForTest(self, testcase): 107 filename = os.path.join(self.testroot, testcase.path + ".js") 111 def IsNegativeTest(self, testcase): 112 return testcase.path.endswith("-n")
|
/external/chromium_org/v8/test/preparser/ |
H A D | 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): 110 if testcase.flags[0] == "-e": 111 return testcase [all...] |
/external/chromium_org/v8/test/webkit/ |
H A D | testcfg.py | 33 from testrunner.objects import testcase namespace 59 test = testcase.TestCase(self, testname) 63 def GetFlagsForTestCase(self, testcase, context): 64 source = self.GetSourceForTest(testcase) 81 testfilename = os.path.join(self.root, testcase.path + self.suffix()) 94 return testcase.flags + flags 96 def GetSourceForTest(self, testcase): 97 filename = os.path.join(self.root, testcase.path + self.suffix())
|
/external/libexif/test/nls/ |
H A D | test-nls.c | 15 typedef struct _testcase testcase; typedef in typeref:struct:_testcase 18 static testcase testcases[] = {
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
H A D | lp_test_printf.c | 90 const struct printf_test_case *testcase) 89 test_printf(unsigned verbose, FILE *fp, const struct printf_test_case *testcase) argument
|
/external/chromium_org/v8/test/test262/ |
H A D | testcfg.py | 36 from testrunner.objects import testcase namespace 54 def CommonTestName(self, testcase): 55 return testcase.path.split(os.path.sep)[-1] 70 case = testcase.TestCase(self, testname) 74 def GetFlagsForTestCase(self, testcase, context): 75 return (testcase.flags + context.mode_flags + self.harness + 76 [os.path.join(self.testroot, testcase.path + ".js")]) 78 def GetSourceForTest(self, testcase): 79 filename = os.path.join(self.testroot, testcase.path + ".js") 83 def IsNegativeTest(self, testcase) [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_test_printf.c | 90 const struct printf_test_case *testcase) 89 test_printf(unsigned verbose, FILE *fp, const struct printf_test_case *testcase) argument
|
/external/valgrind/main/none/tests/ |
H A D | tls.c | 46 struct testcase { struct 53 struct testcase *test = (struct testcase *)p; 74 static const struct testcase tests[] = {
|
/external/chromium_org/chrome/common/extensions/manifest_tests/ |
H A D | extension_manifest_test.cc | 238 void ExtensionManifestTest::RunTestcase(const Testcase& testcase, argument 242 LoadAndExpectError(testcase.manifest_filename_.c_str(), 243 testcase.expected_error_, 244 testcase.location_, 245 testcase.flags_); 248 LoadAndExpectWarning(testcase.manifest_filename_.c_str(), 249 testcase.expected_error_, 250 testcase.location_, 251 testcase.flags_); 254 LoadAndExpectSuccess(testcase [all...] |
/external/apache-harmony/support/src/test/java/tests/support/ |
H A D | Support_HttpServer.java | 85 TestCase testcase = null; field in class:Support_HttpServer 89 this.testcase = test;
|
/external/chromium_org/third_party/icu/source/test/iotest/ |
H A D | stream.cpp | 327 char testcase[10]; local 328 testString(UStr, u_austrcpy(testcase, testCase1), expectedResultA, IOSTREAM_EOF|IOSTREAM_FAIL); 329 testString(UStr, u_austrcpy(testcase, testCase2), expectedResultB, IOSTREAM_EOF); 331 testString(UStr, u_austrcpy(testcase, testCase3), expectedResultC, IOSTREAM_EOF|IOSTREAM_FAIL); 332 testString(UStr, u_austrcpy(testcase, testCase4), expectedResultD, IOSTREAM_EOF); 333 testString(UStr, u_austrcpy(testcase, testCase5), expectedResultD, IOSTREAM_GOOD); 334 testString(UStr, u_austrcpy(testcase, testCase6), expectedResultD, IOSTREAM_GOOD);
|
/external/chromium_org/third_party/icu/source/test/perf/unisetperf/ |
H A D | unisetperf.cpp | 135 Command(const UnicodeSetPerformanceTest &testcase) : testcase(testcase) {} argument 145 return testcase.countInputCodePoints+testcase.spanCount-1; 149 return testcase.spanCount; 152 const UnicodeSetPerformanceTest &testcase; member in class:Command 157 Contains(const UnicodeSetPerformanceTest &testcase) : Command(testcase) { argument 163 if(testcase 172 get(const UnicodeSetPerformanceTest &testcase) argument 207 SpanUTF16(const UnicodeSetPerformanceTest &testcase) argument 234 get(const UnicodeSetPerformanceTest &testcase) argument 258 SpanBackUTF16(const UnicodeSetPerformanceTest &testcase) argument 285 get(const UnicodeSetPerformanceTest &testcase) argument 313 SpanUTF8(const UnicodeSetPerformanceTest &testcase) argument 335 get(const UnicodeSetPerformanceTest &testcase) argument 359 SpanBackUTF8(const UnicodeSetPerformanceTest &testcase) argument 381 get(const UnicodeSetPerformanceTest &testcase) argument [all...] |
/external/chromium_org/third_party/icu/source/test/perf/utrie2perf/ |
H A D | utrie2perf.cpp | 97 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {} argument 106 return testcase.countInputCodePoints; 111 const UTrie2PerfTest &testcase; member in class:Command 117 CheckFCD(const UTrie2PerfTest &testcase) : Command(testcase) {} argument 119 static UPerfFunction* get(const UTrie2PerfTest &testcase) { argument 120 return new CheckFCD(testcase); 124 qcResult=unorm_quickCheck(testcase 175 ToNFC(const UTrie2PerfTest &testcase) argument 187 get(const UTrie2PerfTest &testcase) argument 209 GetBiDiClass(const UTrie2PerfTest &testcase) argument 211 get(const UTrie2PerfTest &testcase) argument [all...] |
/external/icu4c/test/iotest/ |
H A D | stream.cpp | 307 char testcase[10]; local 308 testString(UStr, u_austrcpy(testcase, testCase1), expectedResultA, IOSTREAM_EOF|IOSTREAM_FAIL); 309 testString(UStr, u_austrcpy(testcase, testCase2), expectedResultB, IOSTREAM_EOF); 311 testString(UStr, u_austrcpy(testcase, testCase3), expectedResultC, IOSTREAM_EOF|IOSTREAM_FAIL); 312 testString(UStr, u_austrcpy(testcase, testCase4), expectedResultD, IOSTREAM_EOF); 313 testString(UStr, u_austrcpy(testcase, testCase5), expectedResultD, IOSTREAM_GOOD); 314 testString(UStr, u_austrcpy(testcase, testCase6), expectedResultD, IOSTREAM_GOOD);
|
/external/icu4c/test/perf/unisetperf/ |
H A D | unisetperf.cpp | 135 Command(const UnicodeSetPerformanceTest &testcase) : testcase(testcase) {} argument 145 return testcase.countInputCodePoints+testcase.spanCount-1; 149 return testcase.spanCount; 152 const UnicodeSetPerformanceTest &testcase; member in class:Command 157 Contains(const UnicodeSetPerformanceTest &testcase) : Command(testcase) { argument 163 if(testcase 172 get(const UnicodeSetPerformanceTest &testcase) argument 207 SpanUTF16(const UnicodeSetPerformanceTest &testcase) argument 234 get(const UnicodeSetPerformanceTest &testcase) argument 258 SpanBackUTF16(const UnicodeSetPerformanceTest &testcase) argument 285 get(const UnicodeSetPerformanceTest &testcase) argument 313 SpanUTF8(const UnicodeSetPerformanceTest &testcase) argument 335 get(const UnicodeSetPerformanceTest &testcase) argument 359 SpanBackUTF8(const UnicodeSetPerformanceTest &testcase) argument 381 get(const UnicodeSetPerformanceTest &testcase) argument [all...] |
/external/icu4c/test/perf/utrie2perf/ |
H A D | utrie2perf.cpp | 97 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {} argument 106 return testcase.countInputCodePoints; 111 const UTrie2PerfTest &testcase; member in class:Command 117 CheckFCD(const UTrie2PerfTest &testcase) : Command(testcase) {} argument 119 static UPerfFunction* get(const UTrie2PerfTest &testcase) { argument 120 return new CheckFCD(testcase); 124 qcResult=unorm_quickCheck(testcase 175 ToNFC(const UTrie2PerfTest &testcase) argument 187 get(const UTrie2PerfTest &testcase) argument 209 GetBiDiClass(const UTrie2PerfTest &testcase) argument 211 get(const UTrie2PerfTest &testcase) argument [all...] |