Searched refs:testcase (Results 1 - 25 of 93) sorted by relevance

1234

/external/clang/test/CodeGen/
H A Dbuiltin-recursive.cc7 void testcase(void) { function
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1513.js31 function testcase() { function
44 testcase();
/external/chromium_org/third_party/icu/source/test/perf/unisetperf/
H A Dunisetperf.cpp135 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/icu/icu4c/source/test/perf/unisetperf/
H A Dunisetperf.cpp135 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/google_apis/
H A Dgoogle_api_keys_unittest.cc138 namespace testcase = official_build::google_apis;
140 EXPECT_TRUE(testcase::HasKeysConfigured());
142 std::string api_key = testcase::g_api_key_cache.Get().api_key();
143 std::string id_main = testcase::g_api_key_cache.Get().GetClientID(
144 testcase::CLIENT_MAIN);
145 std::string secret_main = testcase::g_api_key_cache.Get().GetClientSecret(
146 testcase::CLIENT_MAIN);
148 testcase::g_api_key_cache.Get().GetClientID(
149 testcase::CLIENT_CLOUD_PRINT);
151 testcase
[all...]
/external/chromium_org/third_party/icu/source/test/perf/utrie2perf/
H A Dutrie2perf.cpp97 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/icu/icu4c/source/test/perf/utrie2perf/
H A Dutrie2perf.cpp97 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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
H A Dunittestresults.py43 for testcase in dom.getElementsByTagName('testcase'):
44 if testcase.getElementsByTagName('failure').length != 0:
45 testname = testcase.getAttribute('name')
46 classname = testcase.getAttribute('classname')
/external/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/third_party/icu/source/test/perf/utfperf/
H A Dutfperf.cpp122 Command(const UtfPerformanceTest &testcase) argument
123 : testcase(testcase),
124 input(testcase.getBuffer()), inputLength(testcase.getBufferLen()),
126 cnv=ucnv_open(testcase.charset, &errorCode);
128 fprintf(stderr, "error opening converter for \"%s\" - %s\n", testcase.charset, u_errorName(errorCode));
143 const UtfPerformanceTest &testcase; member in class:Command
153 Roundtrip(const UtfPerformanceTest &testcase) : Command(testcase) {} argument
155 get(const UtfPerformanceTest &testcase) argument
220 FromUnicode(const UtfPerformanceTest &testcase) argument
222 get(const UtfPerformanceTest &testcase) argument
265 FromUTF8(const UtfPerformanceTest &testcase) argument
272 get(const UtfPerformanceTest &testcase) argument
[all...]
/external/icu/icu4c/source/test/perf/utfperf/
H A Dutfperf.cpp122 Command(const UtfPerformanceTest &testcase) argument
123 : testcase(testcase),
124 input(testcase.getBuffer()), inputLength(testcase.getBufferLen()),
126 cnv=ucnv_open(testcase.charset, &errorCode);
128 fprintf(stderr, "error opening converter for \"%s\" - %s\n", testcase.charset, u_errorName(errorCode));
143 const UtfPerformanceTest &testcase; member in class:Command
153 Roundtrip(const UtfPerformanceTest &testcase) : Command(testcase) {} argument
155 get(const UtfPerformanceTest &testcase) argument
220 FromUnicode(const UtfPerformanceTest &testcase) argument
222 get(const UtfPerformanceTest &testcase) argument
265 FromUTF8(const UtfPerformanceTest &testcase) argument
272 get(const UtfPerformanceTest &testcase) argument
[all...]
/external/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/third_party/sqlite/src/src/
H A Dtokenize.c115 testcase( z[0]==' ' );
116 testcase( z[0]=='\t' );
117 testcase( z[0]=='\n' );
118 testcase( z[0]=='\f' );
119 testcase( z[0]=='\r' );
234 testcase( delim=='`' );
235 testcase( delim=='\'' );
236 testcase( delim=='"' );
270 testcase( z[0]=='0' ); testcase(
[all...]
/external/chromium_org/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/chromium_org/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/chromium_org/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/valgrind/main/none/tests/
H A Dtls.c46 struct testcase { struct
53 struct testcase *test = (struct testcase *)p;
74 static const struct testcase tests[] = {

Completed in 1436 milliseconds

1234