Home
last modified time | relevance | path

Searched defs:cls (Results 1 – 25 of 604) sorted by relevance

12345678910>>...25

/third_party/FreeBSD/sys/kern/
Dsubr_kobj.c80 kobj_class_compile_common(kobj_class_t cls, kobj_ops_t ops) in kobj_class_compile_common()
109 kobj_class_compile(kobj_class_t cls) in kobj_class_compile()
140 kobj_class_compile_static(kobj_class_t cls, kobj_ops_t ops) in kobj_class_compile_static()
154 kobj_lookup_method_class(kobj_class_t cls, kobjop_desc_t desc) in kobj_lookup_method_class()
169 kobj_lookup_method_mi(kobj_class_t cls, in kobj_lookup_method_mi()
192 kobj_lookup_method(kobj_class_t cls, in kobj_lookup_method()
207 kobj_class_free(kobj_class_t cls) in kobj_class_free()
238 kobj_create(kobj_class_t cls, in kobj_create()
256 kobj_init_common(kobj_t obj, kobj_class_t cls) in kobj_init_common()
264 kobj_init(kobj_t obj, kobj_class_t cls) in kobj_init()
[all …]
/third_party/python/Lib/idlelib/idle_test/
Dtest_editor.py15 def setUpClass(cls): argument
21 def tearDownClass(cls): argument
104 def setUpClass(cls): argument
113 def tearDownClass(cls): argument
187 def setUpClass(cls): argument
194 def tearDownClass(cls): argument
217 def setUpClass(cls): argument
224 def tearDownClass(cls): argument
Dtest_help_about.py25 def setUpClass(cls): argument
32 def tearDownClass(cls): argument
93 def setUpClass(cls): argument
100 def tearDownClass(cls): argument
117 def setUpClass(cls): argument
124 def tearDownClass(cls): argument
156 def setUpClass(cls): argument
165 def tearDownClass(cls): argument
Dtest_config_key.py30 def setUpClass(cls): argument
38 def tearDownClass(cls): argument
107 def setUpClass(cls): argument
114 def tearDownClass(cls): argument
175 def setUpClass(cls): argument
182 def tearDownClass(cls): argument
244 def setUpClass(cls): argument
252 def tearDownClass(cls): argument
273 def setUpClass(cls): argument
281 def tearDownClass(cls): argument
[all …]
Dtest_macosx.py28 def setUpClass(cls): argument
35 def tearDownClass(cls): argument
83 def setUpClass(cls): argument
93 def tearDownClass(cls): argument
Dtest_textview.py83 def setUpClass(cls): argument
88 def tearDownClass(cls): argument
127 def setUpClass(cls): argument
133 def tearDownClass(cls): argument
148 def setUpClass(cls): argument
153 def tearDownClass(cls): argument
/third_party/python/Lib/
D_py_abc.py54 def register(cls, subclass): argument
72 def _dump_registry(cls, file=None): argument
83 def _abc_registry_clear(cls): argument
87 def _abc_caches_clear(cls): argument
92 def __instancecheck__(cls, instance): argument
108 def __subclasscheck__(cls, subclass): argument
Dabc.py110 def register(cls, subclass): argument
117 def __instancecheck__(cls, instance): argument
121 def __subclasscheck__(cls, subclass): argument
125 def _dump_registry(cls, file=None): argument
137 def _abc_registry_clear(cls): argument
141 def _abc_caches_clear(cls): argument
146 def update_abstractmethods(cls): argument
Denum.py482 def __prepare__(metacls, cls, bases, **kwds): argument
496 def __new__(metacls, cls, bases, classdict, *, boundary=None, _simple=False, **kwds): argument
679 def __bool__(cls): argument
685 …def __call__(cls, value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=N… argument
723 def __contains__(cls, member): argument
744 def __delattr__(cls, attr): argument
751 def __dir__(cls): argument
769 def __getattr__(cls, name): argument
785 def __getitem__(cls, name): argument
791 def __iter__(cls): argument
[all …]
/third_party/python/Tools/c-analyzer/c_parser/
Dinfo.py35 def _from_raw(cls, raw): argument
48 def by_priority(cls, group=None): argument
62 def is_type_decl(cls, kind): argument
70 def is_decl(cls, kind): argument
78 def get_group(cls, kind, *, groups=None): argument
101 def resolve_group(cls, group): argument
164 def from_raw(cls, raw): argument
206 def from_row(cls, row, **markers): argument
213 def _make(cls, iterable): argument
220 def __new__(cls, filename, funcname, name): argument
[all …]
/third_party/protobuf/python/google/protobuf/internal/
Dpython_message.py107 def __new__(cls, name, bases, dictionary): argument
160 def __init__(cls, name, bases, dictionary): argument
294 def _AttachFieldHelpers(cls, field_descriptor): argument
385 def _AddEnumValues(descriptor, cls): argument
491 def _AddInitMethod(message_descriptor, cls): argument
594 def _AddPropertiesForFields(descriptor, cls): argument
605 def _AddPropertiesForField(field, cls): argument
638 def _AddPropertiesForRepeatedField(field, cls): argument
682 def _AddPropertiesForNonRepeatedScalarField(field, cls): argument
741 def _AddPropertiesForNonRepeatedCompositeField(field, cls): argument
[all …]
/third_party/python/Lib/unittest/test/
Dtest_setups.py36 def setUpClass(cls): argument
54 def tearDownClass(cls): argument
72 def tearDownClass(cls): argument
83 def tearDownClass(cls): argument
101 def setUpClass(cls): argument
120 def tearDownClass(cls): argument
131 def tearDownClass(cls): argument
153 def setUpClass(cls): argument
156 def tearDownClass(cls): argument
170 def setUpClass(cls): argument
[all …]
Dtest_runner.py276 def setUpClass(cls): argument
284 def tearDownClass(cls): argument
302 def setUpClass(cls): argument
311 def tearDownClass(cls): argument
329 def setUpClass(cls): argument
335 def tearDownClass(cls): argument
358 def setUpClass(cls): argument
364 def tearDownClass(cls): argument
407 def setUpClass(cls): argument
416 def tearDownClass(cls): argument
[all …]
/third_party/typescript/tests/baselines/reference/
DabstractClassUnionInstantiation.js48 [ConcreteA, AbstractA, AbstractB].map(function (cls) { return new cls(); }); // should error argument
49 [AbstractA, AbstractB, ConcreteA].map(function (cls) { return new cls(); }); // should error argument
50 [ConcreteA, ConcreteB].map(function (cls) { return new cls(); }); // should work argument
51 [AbstractA, AbstractB].map(function (cls) { return new cls(); }); // should error argument
/third_party/python/Lib/ctypes/test/
Dtest_parameters.py28 def from_param(cls, value): argument
33 def from_param(cls, value): argument
45 def from_param(cls, value): argument
149 def from_param(cls, obj): argument
157 def from_param(cls, obj): argument
166 def from_param(cls, obj): argument
261 def from_param(cls, value): argument
284 def from_param(cls, value): argument
/third_party/rust/crates/regex/regex-syntax/src/hir/
Dmod.rs560 let mut cls = ClassBytes::empty(); in dot() localVariable
565 let mut cls = ClassUnicode::empty(); in dot() localVariable
582 let mut cls = ClassBytes::empty(); in any() localVariable
586 let mut cls = ClassUnicode::empty(); in any() localVariable
1642 let cls = uclass(&[('a', 'c'), ('x', 'z')]); in class_canonicalize_unicode() localVariable
1646 let cls = uclass(&[('x', 'z'), ('a', 'c')]); in class_canonicalize_unicode() localVariable
1650 let cls = uclass(&[('x', 'z'), ('w', 'y')]); in class_canonicalize_unicode() localVariable
1654 let cls = uclass(&[ in class_canonicalize_unicode() localVariable
1665 let cls = uclass(&[('x', 'z'), ('u', 'w')]); in class_canonicalize_unicode() localVariable
1669 let cls = uclass(&[('\x00', '\u{10FFFF}'), ('\x00', '\u{10FFFF}')]); in class_canonicalize_unicode() localVariable
[all …]
Dtranslate.rs248 let cls = hir::ClassUnicode::empty(); in visit_pre() localVariable
251 let cls = hir::ClassBytes::empty(); in visit_pre() localVariable
304 let cls = self.hir_perl_unicode_class(x)?; in visit_post() localVariable
308 let cls = self.hir_perl_byte_class(x); in visit_post() localVariable
314 let cls = hir::Class::Unicode(self.hir_unicode_class(x)?); in visit_post() localVariable
319 let mut cls = self.pop().unwrap().unwrap_class_unicode(); in visit_post() localVariable
334 let mut cls = self.pop().unwrap().unwrap_class_bytes(); in visit_post() localVariable
390 let cls = hir::ClassUnicode::empty(); in visit_class_set_item_pre() localVariable
393 let cls = hir::ClassBytes::empty(); in visit_class_set_item_pre() localVariable
412 let mut cls = self.pop().unwrap().unwrap_class_unicode(); in visit_class_set_item_post() localVariable
[all …]
/third_party/skia/third_party/externals/microhttpd/src/examples/
Dfileserver_example_dirs.c34 file_reader (void *cls, uint64_t pos, char *buf, size_t max) in file_reader()
43 file_free_callback (void *cls) in file_free_callback()
50 dir_free_callback (void *cls) in dir_free_callback()
58 dir_reader (void *cls, uint64_t pos, char *buf, size_t max) in dir_reader()
79 ahc_echo (void *cls, in ahc_echo()
Dmhd2spdy_http.c30 http_cb_log(void * cls, in http_cb_log()
48 http_cb_iterate(void *cls, in http_cb_iterate()
79 http_cb_response (void *cls, in http_cb_response()
149 http_cb_response_done(void *cls) in http_cb_response_done()
156 http_cb_request (void *cls, in http_cb_request()
372 http_cb_request_completed (void *cls, in http_cb_request_completed()
Dspdy_event_loop.c55 new_session_callback (void *cls, in new_session_callback()
97 session_closed_handler (void *cls, in session_closed_handler()
121 response_done_callback(void *cls, in response_done_callback()
180 append_headers_to_data (void *cls, in append_headers_to_data()
201 standard_request_handler(void *cls, in standard_request_handler()
273 new_post_data_cb (void * cls, in new_post_data_cb()
/third_party/python/Lib/test/
D_test_multiprocessing.py297 def _test_args(cls, q, arg): argument
313 def _test(cls, q, *args, **kwds): argument
338 def _test_send_parent_process(cls, wconn): argument
368 def _test_create_grandchild_process(cls, wconn): argument
374 def _test_report_parent_status(cls, wconn): argument
438 def _test_process_mainthread_native_id(cls, q): argument
443 def _sleep_some(cls): argument
447 def _test_sleep(cls, delay): argument
533 def _test_recursion(cls, wconn, id): argument
564 def _test_sentinel(cls, event): argument
[all …]
Dtest_genericclass.py163 def __class_getitem__(cls, item): argument
170 def __class_getitem__(cls, item): argument
178 def __class_getitem__(cls, item): argument
181 def __class_getitem__(cls, item): argument
189 def __class_getitem__(cls, item): argument
197 def __init_subclass__(cls): argument
198 def __class_getitem__(cls, item): argument
209 def __class_getitem__(cls, item): argument
219 def __class_getitem__(cls): argument
225 def __class_getitem__(cls, one, two): argument
[all …]
Dtest_subclassinit.py10 def __init_subclass__(cls): argument
24 def __init_subclass__(cls): argument
36 def __init_subclass__(cls, **kwargs): argument
46 def __init_subclass__(cls): argument
55 def __init_subclass__(cls, whatever): argument
64 def __init_subclass__(cls, **kwargs): argument
79 def __init_subclass__(cls, **kwargs): argument
87 def __init_subclass__(cls, middle, **kwargs): argument
92 def __init_subclass__(cls, right="right", **kwargs): argument
117 def __new__(cls, name, bases, ns): argument
[all …]
/third_party/python/Tools/c-analyzer/c_common/
Dclsutil.py32 def __set_name__(self, cls, name): argument
43 def __get__(self, obj, cls): argument
70 def _ensure___del__(self, cls, slotnames): # See the comment in __init__(). argument
108 def __set_name__(self, cls, name): argument
113 def __get__(self, obj, cls): argument
/third_party/mbedtls/scripts/
Dassemble_changelog.py82 def extract_top_version(cls, changelog_file_content): argument
97 def version_title_text(cls, version_title): argument
102 def split_categories(cls, version_body): argument
111 def format_category(cls, title, body): argument
120 def is_released_version(cls, title): argument
128 def extract_top_version(cls, changelog_file_content): argument
145 def version_title_text(cls, version_title): argument
150 def split_categories(cls, version_body): argument
171 def format_category(cls, title, body): argument
323 def merge_hash(cls, some_hash): argument

12345678910>>...25