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

1 2 3 4

  /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/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/third_party/WebKit/Tools/TestResultServer/templates/
showfilelist.html 9 {% if builder or test_type or name %}
10 - {{ builder }} {{test_type }} {{ name }}
34 <td>{% if file.test_type %}
35 <a href="/testfile?testtype={{ file.test_type }}" >
36 {{ file.test_type }}
40 <td><a href="/testfile?builder={{ file.builder }}&name={{ file.name }}&master={{ file.master }}&testtype={{ file.test_type }}" >
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateTest.java 66 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
67 Certificate c2 = new MyCertificate("TEST_TYPE", testEncoding);
77 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
78 Certificate c2 = new MyCertificate("TEST_TYPE", testEncoding);
89 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
90 assertEquals("TEST_TYPE", c1.getType());
98 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
108 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
109 Certificate c2 = new MyCertificate("TEST_TYPE", testEncoding);
118 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding)
    [all...]
CRLTest.java 53 CRL crl = new MyCRL("TEST_TYPE");
54 assertEquals("TEST_TYPE", crl.getType());
76 CRL crl = new MyCRL("TEST_TYPE");
84 CRL crl = new MyCRL("TEST_TYPE");
  /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...]
  /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/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...]
  /libcore/luni/src/test/java/tests/security/cert/
CertificateTest.java 63 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
69 assertEquals("TEST_TYPE", c1.getType());
78 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
79 Certificate c2 = new MyCertificate("TEST_TYPE", testEncoding);
83 assertFalse(c1.hashCode() == new MyCertificate("TEST_TYPE", cert
93 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
94 Certificate c2 = new MyCertificate("TEST_TYPE", testEncoding);
106 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
107 assertEquals("TEST_TYPE", c1.getType());
115 Certificate c1 = new MyCertificate("TEST_TYPE", testEncoding)
    [all...]
CertificateCertificateRepTest.java 32 MyCertificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
33 MyCertificateRep rep = c1.new MyCertificateRep("TEST_TYPE", new byte[] {
38 assertEquals("TEST_TYPE", rep.getType());
60 MyCertificate c1 = new MyCertificate("TEST_TYPE", testEncoding);
61 MyCertificateRep rep = c1.new MyCertificateRep("TEST_TYPE", new byte[] {
CRLTest.java 73 CRL crl = new MyCRL("TEST_TYPE");
74 assertEquals("TEST_TYPE", crl.getType());
96 CRL crl = new MyCRL("TEST_TYPE");
104 CRL crl = new MyCRL("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/third_party/WebKit/Tools/TestResultServer/
index.yaml 30 - name: test_type
45 - name: test_type
63 - name: test_type
  /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/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)
  /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/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") {
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_GroupMembershipTest.java 64 .with(RawContacts.ACCOUNT_TYPE, "test_type")
69 .with(Groups.ACCOUNT_TYPE, "test_type")
84 .with(RawContacts.ACCOUNT_TYPE, "test_type")
91 .with(Groups.ACCOUNT_TYPE, "test_type")
  /external/chromium_org/chrome/browser/net/
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/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...]
  /cts/tests/tests/content/src/android/content/cts/
IntentTest.java 61 private static final String TEST_TYPE = "testType";
126 mIntent.setType(TEST_TYPE);
220 mIntent.setType(TEST_TYPE);
221 assertEquals(TEST_TYPE, mIntent.getType());
259 mIntent.setType(TEST_TYPE);
260 assertEquals(TEST_TYPE, mIntent.resolveType(mContext));
271 mIntent.setType(TEST_TYPE);
272 assertEquals(TEST_TYPE, mIntent.resolveType(contentResolver));
360 mIntent.setType(TEST_TYPE);
361 assertEquals(TEST_TYPE, mIntent.resolveTypeIfNeeded(contentResolver))
    [all...]
  /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) {

Completed in 2880 milliseconds

1 2 3 4