Searched defs:testcase (Results 1 - 25 of 37) sorted by relevance

12

/external/clang/test/CodeGen/
H A Dbuiltin-recursive.cpp7 void testcase(void) { function
/external/v8/test/mjsunit/regress/
H A Dregress-1513.js31 function testcase() { function
44 testcase();
/external/v8/tools/testrunner/objects/
H A Dworkpacket.py30 from . import testcase namespace
87 tests = [ testcase.TestCase.UnpackTask(t) for t in packed["tests"] ]
/external/v8/test/fuzz-natives/
H A Dtestcfg.py10 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/
H A Dtestcfg.py31 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/benchmarks/
H A Dtestcfg.py35 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/v8/test/cctest/
H A Dtestcfg.py34 from testrunner.objects import testcase namespace
73 test = testcase.TestCase(self, raw_test, dependency=dependency)
78 def GetFlagsForTestCase(self, testcase, context):
79 testname = testcase.path.split(os.path.sep)[-1]
81 serialization_file += ''.join(testcase.flags).replace('-', '_')
82 return (testcase.flags + [testcase.path] + context.mode_flags +
/external/v8/test/mjsunit/
H A Dtestcfg.py32 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/libexif/test/nls/
H A Dtest-nls.c15 typedef struct _testcase testcase; typedef in typeref:struct:_testcase
18 static testcase testcases[] = {
/external/v8/test/message/
H A Dtestcfg.py34 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/v8/test/mozilla/
H A Dtestcfg.py35 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/v8/test/preparser/
H A Dtestcfg.py34 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/v8/test/webkit/
H A Dtestcfg.py33 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/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatRegressionTest.java317 void checkNBSPPatternRtNum(String testcase, NumberFormat nf, double myNumber) { argument
325 errln("FAIL: " + testcase +" - failed to parse. " + e.toString());
329 errln("FAIL: "+testcase+": formatted "+myNumber+", parsed into "+aNumber+"\n");
331 logln("PASS: "+testcase+": formatted "+myNumber+", parsed into "+aNumber+"\n");
335 void checkNBSPPatternRT(String testcase, NumberFormat nf) { argument
336 checkNBSPPatternRtNum(testcase, nf, 12345.);
337 checkNBSPPatternRtNum(testcase, nf, -12345.);
342 String testcase;
345 testcase="ar_AE UNUM_CURRENCY";
347 checkNBSPPatternRT(testcase, n
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_printf.c90 const struct printf_test_case *testcase)
89 test_printf(unsigned verbose, FILE *fp, const struct printf_test_case *testcase) argument
/external/v8/test/test262/
H A Dtestcfg.py37 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")
84 def IsNegativeTest(self, testcase)
[all...]
/external/google-breakpad/src/processor/
H A Dstatic_address_map_unittest.cc54 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_ite
93 CompareRetrieveResult(int testcase, int target) argument
115 RetrieveTester(int testcase) argument
157 int testcase = 0; local
176 int testcase = 1; local
195 int testcase = 2; local
214 int testcase = 3; local
[all...]
H A Dstatic_map_unittest.cc142 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],
[all...]
/external/icu/icu4c/source/test/perf/utrie2perf/
H A Dutrie2perf.cpp95 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {} argument
104 return testcase.countInputCodePoints;
109 const UTrie2PerfTest &testcase; member in class:Command
115 CheckFCD(const UTrie2PerfTest &testcase) : Command(testcase) {} argument
117 static UPerfFunction* get(const UTrie2PerfTest &testcase) { argument
118 return new CheckFCD(testcase);
122 qcResult=unorm_quickCheck(testcase
173 ToNFC(const UTrie2PerfTest &testcase) argument
185 get(const UTrie2PerfTest &testcase) argument
207 GetBiDiClass(const UTrie2PerfTest &testcase) argument
209 get(const UTrie2PerfTest &testcase) argument
[all...]
/external/v8/test/promises-aplus/
H A Dtestcfg.py37 from testrunner.objects import testcase namespace
71 def CommonTestName(self, testcase):
72 return testcase.path.split(os.path.sep)[-1]
75 return [testcase.TestCase(self, fname[:-len('.js')]) for fname in
79 def GetFlagsForTestCase(self, testcase, context):
80 return (testcase.flags + context.mode_flags + ['--harmony'] +
82 [os.path.join(self.test_files_root, testcase.path + '.js')] +
85 def GetSourceForTest(self, testcase):
87 'lib', 'tests', testcase.path + '.js')
91 def IsNegativeTest(self, testcase)
[all...]
/external/v8/test/test262-es6/
H A Dtestcfg.py38 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):
102 if not hasattr(testcase, "test_recor
[all...]
/external/v8/tools/testrunner/local/
H A Dtestsuite.py35 from ..objects import testcase namespace
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):
178 def GetFlagsForTestCase(self, testcase, context):
181 def GetSourceForTest(self, testcase):
187 def IsNegativeTest(self, testcase)
[all...]
/external/valgrind/none/tests/
H A Dtls.c46 struct testcase { struct
53 struct testcase *test = (struct testcase *)p;
74 static const struct testcase tests[] = {
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpServer.java85 TestCase testcase = null; field in class:Support_HttpServer
89 this.testcase = test;
/external/icu/icu4c/source/test/intltest/
H A Dastrotst.cpp438 static const double testcase[][10] = {{2012, 5, 20 , 16 , 48, 59}, local
453 for (int32_t i = 0; i < (int32_t)(sizeof(testcase)/sizeof(testcase[0])); i++) {
455 logln((UnicodeString)"CASE["+i+"]: Year "+(int32_t)testcase[i][0]+" Month "+(int32_t)testcase[i][1]+" Day "+
456 (int32_t)testcase[i][2]+" Hour "+(int32_t)testcase[i][3]+" Minutes "+(int32_t)testcase[i][4]+
457 " Seconds "+(int32_t)testcase[i][5]);
458 gc->set((int32_t)testcase[
[all...]

Completed in 703 milliseconds

12