/third_party/skia/third_party/externals/microhttpd/src/testzzuf/ |
H A D | test_put.c | 78 ahc_echo (void *cls, in ahc_echo() argument 86 int *done = cls; in ahc_echo()
|
H A D | test_put_chunked.c | 78 ahc_echo (void *cls, in ahc_echo() argument 86 int *done = cls; in ahc_echo()
|
H A D | test_put_large.c | 86 ahc_echo (void *cls, in ahc_echo() argument 94 int *done = cls; in ahc_echo()
|
/third_party/python/Lib/test/ |
H A D | test_list.py | 68 def __new__(cls, seq, newarg=None): 69 self = super().__new__(cls, seq)
|
H A D | test__xxsubinterpreters.py | 106 def from_raw(cls, raw): 107 if isinstance(raw, cls): 110 return cls(raw) 114 def __new__(cls, name=None, id=None): 135 self = super().__new__(cls, name, id) 153 def __new__(cls, action, end=None, interp=None): 158 self = super().__new__(cls, action, end, interp) 204 def __new__(cls, pending=0, *, closed=False): 205 self = super().__new__(cls, pending, closed) 1901 def __new__(cls, en [all...] |
H A D | test_iter.py | 993 def __new__(cls): 994 cls.count += 1 995 return object.__new__(cls) 997 cls = self.__class__ 998 assert cls.count > 0 999 cls.count -= 1
|
H A D | test_inspect.py | 346 def __init_subclass__(cls): 347 isabstract_checks.append(inspect.isabstract(cls)) 469 tree = inspect.getclasstree([cls[1] for cls in classes]) 485 tree = inspect.getclasstree([cls[1] for cls in classes], True) 622 def __module__(cls): 921 def attrs_wo_objs(cls): 922 return [t[:3] for t in inspect.classify_class_attrs(cls)] 1051 def c(cls) [all...] |
H A D | pydocfodder.py | 103 def A_classmethod(cls, x):
|
/third_party/selinux/libselinux/include/selinux/ |
H A D | selinux.h | 166 int (*func_audit) (void *auditdata, security_class_t cls, 424 extern const char *security_class_to_string(security_class_t cls);
|
H A D | avc.h | 148 void (*func_audit) (void *auditdata, security_class_t cls,
|
/third_party/python/Modules/ |
H A D | arraymodule.c | 76 #define get_array_state_by_class(cls) \ 77 (get_array_state(PyType_GetModule(cls))) 1275 cls: defining_class 1283 array_array_extend_impl(arrayobject *self, PyTypeObject *cls, PyObject *bb) in array_array_extend_impl() argument 1286 array_state *state = get_array_state_by_class(cls); in array_array_extend_impl() 1458 cls: defining_class 1467 array_array_fromfile_impl(arrayobject *self, PyTypeObject *cls, PyObject *f, in array_array_fromfile_impl() argument 1486 array_state *state = get_array_state_by_class(cls); in array_array_fromfile_impl() 1522 cls: defining_class 1530 array_array_tofile_impl(arrayobject *self, PyTypeObject *cls, PyObjec argument 2186 array_array___reduce_ex___impl(arrayobject *self, PyTypeObject *cls, PyObject *value) array_array___reduce_ex___impl() argument 2951 array_arrayiterator___reduce___impl(arrayiterobject *self, PyTypeObject *cls) array_arrayiterator___reduce___impl() argument [all...] |
H A D | _zoneinfo.c | 383 zoneinfo_no_cache(PyTypeObject *cls, PyObject *args, PyObject *kwargs) in zoneinfo_no_cache() argument 391 PyObject *out = zoneinfo_new_instance(cls, key); in zoneinfo_no_cache() 400 zoneinfo_clear_cache(PyObject *cls, PyObject *args, PyObject *kwargs) in zoneinfo_clear_cache() argument 410 PyTypeObject *type = (PyTypeObject *)cls; in zoneinfo_clear_cache() 693 zoneinfo__unpickle(PyTypeObject *cls, PyObject *args) in zoneinfo__unpickle() argument 707 PyObject *rv = zoneinfo_new(cls, val_args, NULL); in zoneinfo__unpickle() 713 return zoneinfo_new_instance(cls, key); in zoneinfo__unpickle() 2536 zoneinfo_init_subclass(PyTypeObject *cls, PyObject *args, PyObject **kwargs) in zoneinfo_init_subclass() argument 2543 if (PyObject_SetAttrString((PyObject *)cls, "_weak_cache", in zoneinfo_init_subclass()
|
/third_party/python/Lib/test/test_capi/ |
H A D | test_misc.py | 155 def __subclasscheck__(cls, sub): 739 for cls in (_testcapi.HeapCTypeWithDict, _testcapi.HeapCTypeWithDict2, 743 if cls is not cls2: 744 class S(cls, cls2): 746 class B1(Both1, cls): 748 class B2(Both1, cls):
|
/third_party/python/Lib/test/test_importlib/source/ |
H A D | test_file_loader.py | 528 def setUpClass(cls): 529 cls.loader = cls.machinery.SourceFileLoader 700 def setUpClass(cls): 701 cls.loader = cls.machinery.SourcelessFileLoader
|
/third_party/rust/crates/regex/src/ |
H A D | compile.rs | 280 Class(hir::Class::Unicode(ref cls)) => self.c_class(cls.ranges()), in c() 281 Class(hir::Class::Bytes(ref cls)) => { in c() 283 self.c_class_bytes(cls.ranges()) in c() 285 assert!(cls.is_all_ascii()); in c() 287 for r in cls.iter() { in c()
|
/third_party/python/Lib/collections/ |
H A D | __init__.py | 296 def fromkeys(cls, iterable, value=None): 299 self = cls() 441 def _make(cls, iterable): 442 result = tuple_new(cls, iterable) 647 def fromkeys(cls, iterable, v=None): 1029 def fromkeys(cls, iterable, *args): 1031 return cls(dict.fromkeys(iterable, *args)) 1185 def fromkeys(cls, iterable, value=None): 1186 d = cls()
|
/third_party/python/Lib/test/support/ |
H A D | __init__.py | 1210 for cls in classes: 1211 if isinstance(cls, str): 1212 if cls in sys.modules: 1213 suite.addTest(loader.loadTestsFromModule(sys.modules[cls])) 1216 elif isinstance(cls, valid_types): 1217 suite.addTest(cls) 1219 suite.addTest(loader.loadTestsFromTestCase(cls)) 1806 def check_free_after_iterating(test, iter, cls, args=()): 1807 class A(cls):
|
/third_party/python/Lib/unittest/ |
H A D | mock.py | 103 # Skip the `cls` argument of a class method 420 def __new__(cls, /, *args, **kw): 424 bases = (cls,) 425 if not issubclass(cls, AsyncMockMixin): 427 bound_args = _MOCK_SIG.bind_partial(cls, *args, **kw).arguments 430 bases = (AsyncMockMixin, cls) 431 new = type(cls.__name__, bases, {'__doc__': cls.__doc__}) 432 instance = _safe_super(NonCallableMock, cls).__new__(new) 2483 def __new__(cls, valu [all...] |
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | c_parsing_helper.py | 34 def normalize_type(cls, typ: str) -> str:
|
/third_party/mesa3d/.gitlab-ci/lava/utils/ |
H A D | gitlab_section.py | 26 def section_id_filter(cls, value) -> str:
|
/third_party/python/Include/internal/ |
H A D | pycore_interp.h | 213 PyTypeObject *cls; member
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/ |
H A D | test_https_session_info.c | 44 query_session_ahc (void *cls, struct MHD_Connection *connection, in query_session_ahc() argument
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/napi/class_checksum/ |
H A D | checksum_n_exporter.cpp | 160 napi_value cls = nullptr; in Export() local 161 tie(succ, cls) = NapiClass::DefineClass(exports_.env_, className, ChecksumNExporter::Constructor, move(props)); in Export() 166 succ = NapiClass::SaveClass(exports_.env_, className, cls); in Export() 172 return exports_.AddProp(className, cls); in Export()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | RuleBasedNumberFormat.java | 1410 Class<?> cls = Class.forName("com.ibm.icu.impl.text.RbnfScannerProviderImpl"); in getLenientScannerProvider() 1411 RbnfLenientScannerProvider provider = (RbnfLenientScannerProvider)cls.newInstance(); in getLenientScannerProvider() 2004 Class<?> cls = Class.forName(ppClassName); in postProcess() 2005 postProcessor = (RBNFPostProcessor)cls.newInstance(); in postProcess()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | RuleBasedNumberFormat.java | 1377 Class<?> cls = Class.forName("ohos.global.icu.impl.text.RbnfScannerProviderImpl"); in getLenientScannerProvider() 1378 RbnfLenientScannerProvider provider = (RbnfLenientScannerProvider)cls.newInstance(); in getLenientScannerProvider() 1965 Class<?> cls = Class.forName(ppClassName); in postProcess() 1966 postProcessor = (RBNFPostProcessor)cls.newInstance(); in postProcess()
|