HomeSort by relevance Sort by last modified time
    Searched refs:test_type (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/
p1.cpp 30 template<typename T> void test_type(T) { T::error; } // expected-error {{has no members}} function
31 template<> void test_type(int (*)()) {} function
40 test_type(e);
41 test_type(f);
42 test_type(g);
43 test_type(h); // expected-note {{instantiation}}
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
print_layout_test_types.py 49 test_type = port.test_type(test_name)
51 if test_type in options.type:
54 host.print_(test_name, test_type)
print_layout_test_types_unittest.py 51 def test_type(self): member in class:PrintLayoutTestTimesTest
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/model/
testfile.py 40 test_type = db.StringProperty() variable in class:TestFile
43 def delete_file(cls, key, master, builder, test_type, name, before, limit):
53 files = cls.get_files(master, builder, test_type, name, before, load_data=False, limit=limit)
56 "File not found, master: %s, builder: %s, test_type:%s, name: %s, before: %s.",
57 master, builder, test_type, name, before)
66 def get_files(cls, master, builder, test_type, name, before=None, load_data=True, limit=1):
72 if test_type:
73 query = query.filter("test_type =", test_type)
89 file_information = "master: %s, builder: %s, test_type: %s, name: %s." % (file.master, file.builder, file.test_type, file.name
    [all...]
testfile_test.py 41 # master, builder, test_type, name, data; order matters.
62 actual_fields = [actual_file.master, actual_file.builder, actual_file.test_type, actual_file.name, actual_file.data]
92 fields = [f.master, f.builder, f.test_type, f.name, f.data]
  /external/chromium_org/build/android/pylib/utils/
report_results.py 15 def _LogToFile(results, test_type, suite_name):
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,
40 (test_type, test_package, flakiness_server))
43 if test_type != 'Instrumentation':
64 def LogFull(results, test_type, test_package, annotation=None,
76 test_type: Type of the test (e.g. 'Instrumentation', 'Unit test', etc.).
104 _LogToFile(results, test_type, suite_name)
107 _LogToFlakinessDashboard(results, test_type, test_package
    [all...]
flakiness_dashboard_results_uploader.py 55 test_results_map, test_results_server, test_type, master_name):
67 test_type=test_type,
185 test_type=self._tests_type,
198 def Upload(results, flakiness_dashboard_server, test_type):
204 test_type: the type of the tests (as displayed by the flakiness dashboard).
206 uploader = ResultsUploader(test_type)
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/
testfilehandler.py 71 test_type = self.request.get(PARAM_TEST_TYPE)
77 "Deleting File, master: %s, builder: %s, test_type: %s, name: %s, before: %s, key: %s.",
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):
95 test_type: type of the test
100 master, builder, test_type, name, before, load_data=False, limit=limit)
102 logging.info("File not found, master: %s, builder: %s, test_type: %s, name: %s.",
103 master, builder, test_type, name)
111 "test_type": test_type
    [all...]
  /external/chromium_org/build/android/pylib/instrumentation/
test_result.py 11 def __init__(self, full_name, test_type, start_date, dur, log=''):
16 test_type: Type of the test result as defined in ResultType.
21 super(InstrumentationTestResult, self).__init__(full_name, test_type, log)
  /external/chromium_org/build/android/pylib/base/
base_test_result.py 25 def __init__(self, name, test_type, log=''):
30 test_type: Type of the test result as defined in ResultType.
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)))
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
simple_api_unittest.cc 122 scoped_ptr<TestType> test_type(new TestType());
124 EXPECT_TRUE(TestType::Populate(*value, test_type.get()));
125 EXPECT_EQ("bling", test_type->string);
126 EXPECT_EQ(1.1, test_type->number);
127 EXPECT_EQ(4, test_type->integer);
128 EXPECT_EQ(true, test_type->boolean);
129 EXPECT_TRUE(value->Equals(test_type->ToValue().get()));
132 scoped_ptr<TestType> test_type(new TestType());
135 EXPECT_FALSE(TestType::Populate(*value, test_type.get()));
142 scoped_ptr<TestType> test_type(new TestType())
    [all...]
crossref_unittest.cc 32 EXPECT_TRUE(crossref_type->test_type.get());
34 crossref_type->test_type->ToValue().get()));
44 EXPECT_TRUE(params->test_type.get());
46 CreateTestTypeDictionary()->Equals(params->test_type->ToValue().get()));
62 scoped_ptr<test::api::simple_api::TestType> test_type(
65 test::api::simple_api::TestType::Populate(*value, test_type.get()));
68 GetTestType::Results::Create(*test_type);
85 EXPECT_TRUE(params->param_object.test_type.get());
88 params->param_object.test_type->ToValue().get()));
99 EXPECT_FALSE(params->param_object.test_type.get())
    [all...]
  /external/chromium_org/ppapi/tests/extensions/media_galleries/
test_galleries.cc 35 pp::FileRef ParseMessage(const pp::Var& var_message, std::string* test_type);
54 std::string* test_type) {
85 *test_type = name_of_test;
94 std::string test_type; local
95 pp::FileRef file_ref = ParseMessage(var_message, &test_type);
99 if (test_type == "read_test") {
101 } else if (test_type == "write_test") {
  /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/
voe_standard_test.cc 241 int run_auto_test(TestType test_type) {
242 assert(test_type != Standard);
257 if (test_type == Stress) {
260 } else if (test_type == CPU) {
302 TestType test_type = Invalid; local
307 test_type = Standard;
312 test_type = Stress;
317 test_type = CPU;
324 if (test_type == Standard) {
332 return run_auto_test(test_type);
    [all...]
  /external/chromium_org/chrome/browser/net/
network_stats.h 199 // |test_type| is the current test_type to be recorded. |status| is the
201 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);
network_stats.cc 411 TestType test_type = test_sequence_[current_test_index_]; local
423 if (test_type == NAT_BIND_TEST) {
426 if (test_type == PACKET_SIZE_TEST) {
442 if (test_type == START_PACKET_TEST) {
508 // If test_type is TOKEN_REQUEST, it will do nothing but call
510 TestType test_type = test_sequence_[current_test_index_];
518 if (test_type == START_PACKET_TEST) {
596 void NetworkStats::RecordHistograms(TestType test_type) {
597 switch (test_type) {
601 RecordInterArrivalHistograms(test_type);
    [all...]
  /external/chromium_org/tools/cr/cr/targets/
target.py 37 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/chromium_org/tools/
gypv8sh.py 33 (v8_shell, mock_js, test_api, js2webui, test_type,
40 cxxoutfile, test_type]
  /external/chromium_org/v8/test/mjsunit/
switch.js 384 function test_switch(clause_type, test_type, feedback, optimize) {
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') {
436 // test_switch(clause_type, test_type, feedback, optimize);
444 test_types.forEach(function(test_type) {
    [all...]
  /external/chromium_org/build/android/pylib/host_driven/
test_case.py 155 test_type = base_test_result.ResultType.PASS
179 test_type = result.GetType()
189 self.tagged_name, test_type, start_ms, duration_ms, log=log))
  /system/core/libcutils/tests/
MemsetTest.cpp 124 void RunMemsetTests(test_e test_type, uint32_t value, int align[][2], size_t num_aligns) {
126 if (test_type == MEMSET16) {
151 if (test_type == MEMSET16) {
  /external/libnfc-nxp/src/
phHciNfc.h 651 * \param[in] test_type test_type is the type of the Self Test
670 uint32_t test_type,
743 uint32_t test_type,
phHciNfc_DevMgmt.h 218 * \param[in] test_type test_type is the type of the Self Test
237 uint8_t test_type,
  /external/valgrind/main/none/tests/ppc64/
test_isa_2_07_part2.c 399 vx_fp_test_type test_type; member in struct:vx_fp_test1
419 vx_fp_test_type test_type; member in struct:vx_fp_test2
891 vx_fp_test_type test_type = test_group.test_type; local
893 switch (test_type) {
898 if (test_type == VX_FP_SMAS)
900 else if (test_type == VX_FP_SMSS)
902 else if (test_type == VX_FP_SNMAS)
917 printf("ERROR: Invalid VX FP test type %d\n", test_type);
942 if (test_type != VX_FP_OTHER)
    [all...]
  /cts/tools/selinux/test/
testrunner.py 411 test_normal_string = 'type TEST_type, TEST_att1, TEST_att2;'
412 test_type = 'TEST_type'
416 self.failUnless(test_type in type_policy.types)
419 self.failUnless(test_type in type_policy.attributes[a])
425 test_normal_string = 'typeattribute TEST_type TEST_att1, TEST_att2;'
426 test_type = 'TEST_type'
429 typ_att_policy.process_type_line('type ' + test_type + ';')
431 self.failUnless(test_type in typ_att_policy.types
    [all...]

Completed in 1031 milliseconds

1 2 3