Home
last modified time | relevance | path

Searched refs:test_type (Results 1 – 25 of 48) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Tools/TestResultServer/model/
Dtestfile.py40 test_type = db.StringProperty() variable in TestFile
43 def delete_file(cls, key, master, builder, test_type, name, before, limit): argument
53 … files = cls.get_files(master, builder, test_type, name, before, load_data=False, limit=limit)
57 master, builder, test_type, name, before)
66 def get_files(cls, master, builder, test_type, name, before=None, load_data=True, limit=1): argument
72 if test_type:
73 query = query.filter("test_type =", test_type)
89 …%s, builder: %s, test_type: %s, name: %s." % (file.master, file.builder, file.test_type, file.name)
99 def overwrite_or_add_file(cls, master, builder, test_type, name, data): argument
100 files = TestFile.get_files(master, builder, test_type, name)
[all …]
Djsonresults.py460 def _get_file(cls, master, builder, test_type, filename): argument
461 files = TestFile.get_files(master, builder, test_type, filename)
468 file.test_type = test_type
474 def update(cls, master, builder, test_type, incremental_string, is_full_results_format): argument
476 small_file = cls._get_file(master, builder, test_type, JSON_RESULTS_FILE_SMALL)
477 large_file = cls._get_file(master, builder, test_type, JSON_RESULTS_FILE)
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/
Dtestfilehandler.py71 test_type = self.request.get(PARAM_TEST_TYPE)
78 master, builder, test_type, name, before, key)
81 num_deleted = TestFile.delete_file(key, master, builder, test_type, name, before, limit)
90 def _get_file_list(self, master, builder, test_type, name, before, limit, callback_name=None): argument
100 master, builder, test_type, name, before, load_data=False, limit=limit)
103 master, builder, test_type, name)
111 "test_type": test_type,
122 def _get_file_content(self, master, builder, test_type, name): argument
132 master, builder, test_type, name, load_data=True, limit=1)
135 master, builder, test_type, name)
[all …]
/external/chromium_org/build/android/pylib/utils/
Dreport_results.py15 def _LogToFile(results, test_type, suite_name): argument
21 log_file_path, re.sub('\W', '_', test_type).lower() + '.log')
25 test_type, os.environ.get('BUILDBOT_BUILDERNAME'),
36 def _LogToFlakinessDashboard(results, test_type, test_package, argument
40 (test_type, test_package, flakiness_server))
43 if test_type != 'Instrumentation':
64 def LogFull(results, test_type, test_package, annotation=None, argument
104 _LogToFile(results, test_type, suite_name)
107 _LogToFlakinessDashboard(results, test_type, test_package,
Dflakiness_dashboard_results_uploader.py55 test_results_map, test_results_server, test_type, master_name): argument
67 test_type=test_type,
185 test_type=self._tests_type,
198 def Upload(results, flakiness_dashboard_server, test_type): argument
206 uploader = ResultsUploader(test_type)
/external/chromium_org/build/android/pylib/base/
Dbase_test_result.py25 def __init__(self, name, test_type, log=''): argument
34 assert test_type in ResultType.GetTypes()
36 self._test_type = test_type
82 for test_type in ResultType.GetTypes():
83 if test_type != ResultType.PASS:
84 for t in sorted(self._GetType(test_type)):
87 s.append('[%s] %s:' % (test_type, t))
119 for test_type in ResultType.GetTypes():
120 s.append('%s: %d' % (test_type, len(self._GetType(test_type))))
158 def _GetType(self, test_type): argument
[all …]
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/
Dp1.cpp30 template<typename T> void test_type(T) { T::error; } // expected-error {{has no members}} in test_type() function
31 template<> void test_type(int (*)()) {} in test_type() function
40 test_type(e); in check()
41 test_type(f); in check()
42 test_type(g); in check()
43 test_type(h); // expected-note {{instantiation}} in check()
/external/chromium_org/v8/test/mjsunit/
Dswitch.js384 function test_switch(clause_type, test_type, feedback, optimize) { argument
388 if (Array.isArray(test_type)) {
389 pairs = test_type.map(function(v) {
395 } else if (test_type === 'symbols') {
402 } else if (test_type === 'strings') {
409 } else if (test_type === 'oddball') {
415 } else if (test_type === 'smi') {
422 } else if (test_type === 'heapnum') {
444 test_types.forEach(function(test_type) { argument
445 test_switch(clause_type, test_type, 'all', opt);
[all …]
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/
Dvoe_standard_test.cc241 int run_auto_test(TestType test_type) { in run_auto_test() argument
242 assert(test_type != Standard); in run_auto_test()
257 if (test_type == Stress) { in run_auto_test()
260 } else if (test_type == CPU) { in run_auto_test()
302 TestType test_type = Invalid; in RunInManualMode() local
307 test_type = Standard; in RunInManualMode()
312 test_type = Stress; in RunInManualMode()
317 test_type = CPU; in RunInManualMode()
324 if (test_type == Standard) { in RunInManualMode()
332 return run_auto_test(test_type); in RunInManualMode()
/external/chromium_org/chrome/browser/net/
Dnetwork_stats.cc411 TestType test_type = test_sequence_[current_test_index_]; in UpdateReception() local
423 if (test_type == NAT_BIND_TEST) { in UpdateReception()
426 if (test_type == PACKET_SIZE_TEST) { in UpdateReception()
442 if (test_type == START_PACKET_TEST) { in UpdateReception()
510 TestType test_type = test_sequence_[current_test_index_]; in OnReadDataTimeout() local
518 if (test_type == START_PACKET_TEST) { in OnReadDataTimeout()
596 void NetworkStats::RecordHistograms(TestType test_type) { in RecordHistograms() argument
597 switch (test_type) { in RecordHistograms()
601 RecordInterArrivalHistograms(test_type); in RecordHistograms()
602 RecordPacketLossSeriesHistograms(test_type); in RecordHistograms()
[all …]
Dnetwork_stats.h201 void RecordHistograms(TestType test_type);
208 void RecordPacketsReceivedHistograms(TestType test_type);
215 void RecordPacketLossSeriesHistograms(TestType test_type);
219 void RecordInterArrivalHistograms(TestType test_type);
223 void RecordRTTHistograms(TestType test_type, uint32 index);
236 void RecordSendToLastRecvDelayHistograms(TestType test_type);
Dnetwork_stats_unittest.cc138 void MakeDelayedMockData(NetworkStats::TestType test_type, in MakeDelayedMockData() argument
149 switch (test_type) { in MakeDelayedMockData()
193 NetworkStats::TestType test_type, in TestStartOneTest() argument
201 test_type, bytes, interval_micros, max_probe_packets, io_mode); in TestStartOneTest()
233 udp_stats_client->test_sequence_.push_back(test_type); in TestStartOneTest()
/external/chromium_org/tools/json_schema_compiler/test/
Dcrossref_unittest.cc32 EXPECT_TRUE(crossref_type->test_type.get()); in TEST()
34 crossref_type->test_type->ToValue().get())); in TEST()
44 EXPECT_TRUE(params->test_type.get()); in TEST()
46 CreateTestTypeDictionary()->Equals(params->test_type->ToValue().get())); in TEST()
62 scoped_ptr<test::api::simple_api::TestType> test_type( in TEST() local
65 test::api::simple_api::TestType::Populate(*value, test_type.get())); in TEST()
68 GetTestType::Results::Create(*test_type); in TEST()
85 EXPECT_TRUE(params->param_object.test_type.get()); in TEST()
88 params->param_object.test_type->ToValue().get())); in TEST()
99 EXPECT_FALSE(params->param_object.test_type.get()); in TEST()
Dsimple_api_unittest.cc122 scoped_ptr<TestType> test_type(new TestType()); in TEST() local
124 EXPECT_TRUE(TestType::Populate(*value, test_type.get())); in TEST()
125 EXPECT_EQ("bling", test_type->string); in TEST()
126 EXPECT_EQ(1.1, test_type->number); in TEST()
127 EXPECT_EQ(4, test_type->integer); in TEST()
128 EXPECT_EQ(true, test_type->boolean); in TEST()
129 EXPECT_TRUE(value->Equals(test_type->ToValue().get())); in TEST()
132 scoped_ptr<TestType> test_type(new TestType()); in TEST() local
135 EXPECT_FALSE(TestType::Populate(*value, test_type.get())); in TEST()
142 scoped_ptr<TestType> test_type(new TestType()); in TEST() local
[all …]
/external/chromium_org/ppapi/tests/extensions/media_galleries/
Dtest_galleries.cc35 pp::FileRef ParseMessage(const pp::Var& var_message, std::string* test_type);
54 std::string* test_type) { in ParseMessage() argument
85 *test_type = name_of_test; in ParseMessage()
94 std::string test_type; in HandleMessage() local
95 pp::FileRef file_ref = ParseMessage(var_message, &test_type); in HandleMessage()
99 if (test_type == "read_test") { in HandleMessage()
101 } else if (test_type == "write_test") { in HandleMessage()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
Dprint_layout_test_types.py49 test_type = port.test_type(test_name)
51 if test_type in options.type:
54 host.print_(test_name, test_type)
/external/chromium_org/tools/cr/cr/targets/
Dtarget.py37 test_type = None
39 test_type = self.NORMAL_TEST
46 CR_TEST_TYPE=test_type,
54 self.test_type = self.Find('CR_TEST_TYPE')
67 return self.test_type and self.test_type != self.NOT_A_TEST
/external/valgrind/main/none/tests/ppc64/
Dtest_isa_2_07_part2.c399 vx_fp_test_type test_type; member
419 vx_fp_test_type test_type; member
891 vx_fp_test_type test_type = test_group.test_type; in test_vx_fp_ops() local
893 switch (test_type) { in test_vx_fp_ops()
898 if (test_type == VX_FP_SMAS) in test_vx_fp_ops()
900 else if (test_type == VX_FP_SMSS) in test_vx_fp_ops()
902 else if (test_type == VX_FP_SNMAS) in test_vx_fp_ops()
917 printf("ERROR: Invalid VX FP test type %d\n", test_type); in test_vx_fp_ops()
942 if (test_type != VX_FP_OTHER) { in test_vx_fp_ops()
979 if (test_type == VX_FP_OTHER) in test_vx_fp_ops()
[all …]
Dtest_isa_2_06_part1.c1087 vx_fp_test_type test_type; member
1601 vx_fp_test_type test_type = test_group.test_type; in test_vx_fp_ops() local
1603 switch (test_type) { in test_vx_fp_ops()
1615 if (test_type == VX_FP_SMA) in test_vx_fp_ops()
1617 else if (test_type == VX_FP_SMS) in test_vx_fp_ops()
1631 printf("ERROR: Invalid VX FP test type %d\n", test_type); in test_vx_fp_ops()
1648 switch (test_type) { in test_vx_fp_ops()
1674 if (test_type != VX_FP_OTHER) { in test_vx_fp_ops()
1712 if (test_type == VX_FP_OTHER) in test_vx_fp_ops()
1743 switch (test_type) { in test_vx_fp_ops()
[all …]
/external/valgrind/main/none/tests/ppc32/
Dtest_isa_2_07_part2.c399 vx_fp_test_type test_type; member
419 vx_fp_test_type test_type; member
891 vx_fp_test_type test_type = test_group.test_type; in test_vx_fp_ops() local
893 switch (test_type) { in test_vx_fp_ops()
898 if (test_type == VX_FP_SMAS) in test_vx_fp_ops()
900 else if (test_type == VX_FP_SMSS) in test_vx_fp_ops()
902 else if (test_type == VX_FP_SNMAS) in test_vx_fp_ops()
917 printf("ERROR: Invalid VX FP test type %d\n", test_type); in test_vx_fp_ops()
942 if (test_type != VX_FP_OTHER) { in test_vx_fp_ops()
979 if (test_type == VX_FP_OTHER) in test_vx_fp_ops()
[all …]
Dtest_isa_2_06_part1.c1087 vx_fp_test_type test_type; member
1601 vx_fp_test_type test_type = test_group.test_type; in test_vx_fp_ops() local
1603 switch (test_type) { in test_vx_fp_ops()
1615 if (test_type == VX_FP_SMA) in test_vx_fp_ops()
1617 else if (test_type == VX_FP_SMS) in test_vx_fp_ops()
1631 printf("ERROR: Invalid VX FP test type %d\n", test_type); in test_vx_fp_ops()
1648 switch (test_type) { in test_vx_fp_ops()
1674 if (test_type != VX_FP_OTHER) { in test_vx_fp_ops()
1712 if (test_type == VX_FP_OTHER) in test_vx_fp_ops()
1743 switch (test_type) { in test_vx_fp_ops()
[all …]
/external/chromium_org/build/android/pylib/instrumentation/
Dtest_result.py11 def __init__(self, full_name, test_type, start_date, dur, log=''): argument
21 super(InstrumentationTestResult, self).__init__(full_name, test_type, log)
/external/chromium_org/build/android/pylib/host_driven/
Dtest_case.py155 test_type = base_test_result.ResultType.PASS
179 test_type = result.GetType()
189 self.tagged_name, test_type, start_ms, duration_ms, log=log))
/external/chromium_org/tools/
Dgypv8sh.py33 (v8_shell, mock_js, test_api, js2webui, test_type,
40 cxxoutfile, test_type]
/external/libnfc-nxp/src/
DphHciNfc.h670 uint32_t test_type,
743 uint32_t test_type,

12