HomeSort by relevance Sort by last modified time
    Searched refs:test_type (Results 1 - 25 of 58) 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/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 28 test_results_map, test_results_server, test_type, master_name):
39 test_type=test_type,
156 test_type=self._tests_type,
169 def Upload(results, flakiness_dashboard_server, test_type):
175 test_type: the type of the tests (as displayed by the flakiness dashboard).
177 uploader = ResultsUploader(test_type)
  /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 26 def __init__(self, name, test_type, log=''):
31 test_type: Type of the test result as defined in ResultType.
35 assert test_type in ResultType.GetTypes()
37 self._test_type = test_type
83 for test_type in ResultType.GetTypes():
84 if test_type != ResultType.PASS:
85 for t in sorted(self._GetType(test_type)):
88 s.append('[%s] %s:' % (test_type, t))
127 for test_type in ResultType.GetTypes():
128 s.append('%s: %d' % (test_type, len(self._GetType(test_type)))
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
simple_api_unittest.cc 118 scoped_ptr<TestType> test_type(new TestType());
120 EXPECT_TRUE(TestType::Populate(*value, test_type.get()));
121 EXPECT_EQ("bling", test_type->string);
122 EXPECT_EQ(1.1, test_type->number);
123 EXPECT_EQ(4, test_type->integer);
124 EXPECT_EQ(true, test_type->boolean);
125 EXPECT_TRUE(value->Equals(test_type->ToValue().get()));
128 scoped_ptr<TestType> test_type(new TestType());
131 EXPECT_FALSE(TestType::Populate(*value, test_type.get()));
138 scoped_ptr<TestType> test_type(new TestType())
    [all...]
crossref_unittest.cc 30 EXPECT_TRUE(crossref_type->test_type.get());
32 crossref_type->test_type->ToValue().get()));
42 EXPECT_TRUE(params->test_type.get());
44 CreateTestTypeDictionary()->Equals(params->test_type->ToValue().get()));
60 scoped_ptr<test::api::simple_api::TestType> test_type(
63 test::api::simple_api::TestType::Populate(*value, test_type.get()));
66 GetTestType::Results::Create(*test_type);
83 EXPECT_TRUE(params->param_object.test_type.get());
86 params->param_object.test_type->ToValue().get()));
97 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 412 TestType test_type = test_sequence_[current_test_index_]; local
424 if (test_type == NAT_BIND_TEST) {
427 if (test_type == PACKET_SIZE_TEST) {
443 if (test_type == START_PACKET_TEST) {
509 // If test_type is TOKEN_REQUEST, it will do nothing but call
511 TestType test_type = test_sequence_[current_test_index_];
519 if (test_type == START_PACKET_TEST) {
597 void NetworkStats::RecordHistograms(TestType test_type) {
598 switch (test_type) {
602 RecordInterArrivalHistograms(test_type);
    [all...]
network_stats_unittest.cc 138 void MakeDelayedMockData(NetworkStats::TestType test_type,
149 switch (test_type) {
193 NetworkStats::TestType test_type,
201 test_type, bytes, interval_micros, max_probe_packets, io_mode);
233 udp_stats_client->test_sequence_.push_back(test_type);
  /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
180 test_type = result.GetType()
190 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...]
  /external/chromium_org/cc/trees/
layer_tree_host_pixeltest_filters.cc 175 PixelTestType test_type) {
202 test_type,
236 void RunPixelTestType(PixelTestType test_type) {
274 RunPixelTest(test_type,
  /packages/experimental/SELinux/CTS/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...]
  /libcore/luni/src/test/java/libcore/java/net/
OldProxyTest.java 59 public void test_type() { method in class:OldProxyTest

Completed in 703 milliseconds

1 2 3