Home
last modified time | relevance | path

Searched refs:cls (Results 501 - 525 of 861) sorted by relevance

1...<<21222324252627282930>>...35

/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H A Dtest_offload.py545 chain=None, cls="", params="",
555 return tc("filter {op} dev {dev} {qdisc} {spec} {cls} {params}"\
557 cls=cls, params=params),
564 cls = "bpf " + bpf
576 return self.cls_filter_op(op=op, prio=prio, handle=handle, cls=cls,
687 res = sim.cls_filter_op(op="delete", prio=1, handle=1, cls="bpf",
883 sim.cls_filter_op(op="delete", prio=1, handle=1, cls="bpf")
887 sim.cls_filter_op(op="delete", prio=1, handle=1, cls
[all...]
/third_party/python/Python/
H A Dpystate.c1926 _register_xidata(struct _xidregistry *xidregistry, PyTypeObject *cls, in _register_xidata() argument
1934 newhead->cls = cls; in _register_xidata()
1944 _PyCrossInterpreterData_RegisterClass(PyTypeObject *cls, in _PyCrossInterpreterData_RegisterClass() argument
1947 if (!PyType_Check(cls)) { in _PyCrossInterpreterData_RegisterClass()
1957 Py_INCREF((PyObject *)cls); in _PyCrossInterpreterData_RegisterClass()
1964 int res = _register_xidata(xidregistry, cls, getdata); in _PyCrossInterpreterData_RegisterClass()
1977 PyObject *cls = PyObject_Type(obj); in _PyCrossInterpreterData_Lookup() local
1986 if (cur->cls == (PyTypeObject *)cls) { in _PyCrossInterpreterData_Lookup()
[all...]
H A Dast.c602 if (!validate_expr(state, p->v.MatchClass.cls, Load)) { in validate_pattern()
607 expr_ty cls = p->v.MatchClass.cls; in validate_pattern() local
609 if (cls->kind == Name_kind) { in validate_pattern()
612 else if (cls->kind == Attribute_kind) { in validate_pattern()
613 cls = cls->v.Attribute.value; in validate_pattern()
618 "MatchClass cls field can only contain Name or Attribute nodes."); in validate_pattern()
/third_party/skia/third_party/externals/microhttpd/doc/examples/
H A Dbasicauthentication.c21 answer_to_connection (void *cls, struct MHD_Connection *connection, in answer_to_connection() argument
H A Dresponseheaders.c23 answer_to_connection (void *cls, struct MHD_Connection *connection, in answer_to_connection() argument
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/
H A Dtest_tls_authentication.c47 test_secure_get (void * cls, char *cipher_suite, int proto_version) in test_secure_get() argument
/third_party/skia/third_party/externals/microhttpd/src/testcurl/
H A Dtest_options.c38 ahc_echo (void *cls, in ahc_echo() argument
/third_party/jinja2/
H A Dlexer.py258 self, message: str, cls: t.Type[TemplateSyntaxError] = TemplateSyntaxError
261 self.error_class = cls
459 def __new__(cls, *members, **kwargs): # type: ignore
460 return super().__new__(cls, members)
H A Dutils.py82 def from_obj(cls, obj: F) -> t.Optional["_PassArg"]:
175 cls = type(obj)
177 if cls.__module__ == "builtins":
178 return f"{cls.__name__} object"
180 return f"{cls.__module__}.{cls.__name__} object"
/third_party/node/tools/inspector_protocol/jinja2/
H A Dnodes.py64 def __new__(cls, name, bases, d):
73 return type.__new__(cls, name, bases, d)
504 def from_untrusted(cls, value, lineno=None, environment=None):
512 return cls(value, lineno=lineno, environment=environment)
H A Dlexer.py224 def __init__(self, message, cls=TemplateSyntaxError):
226 self.error_class = cls
237 def __new__(cls, lineno, type, value):
238 return tuple.__new__(cls, (lineno, intern(str(type)), value))
/third_party/littlefs/scripts/
H A Dstructs.py30 def __new__(cls, x=0):
45 return super().__new__(cls, x)
113 def __new__(cls, file='', struct='', size=0):
114 return super().__new__(cls, file, struct,
/third_party/python/Lib/
H A Dtempfile.py878 def _rmtree(cls, name, ignore_errors=False):
890 cls._rmtree(path, ignore_errors=ignore_errors)
902 def _cleanup(cls, name, warn_message, ignore_errors=False):
903 cls._rmtree(name, ignore_errors=ignore_errors)
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dpostprocessor.c134 void *cls; member
322 ret->cls = iter_cls; in MHD_create_post_processor()
448 if (MHD_NO == pp->ikvi (pp->cls, MHD_POSTDATA_KIND, (const char *) &pp[1], /* key */ in post_process_urlencoded()
769 (MHD_NO == pp->ikvi (pp->cls, in process_value_to_boundary()
/third_party/python/Python/clinic/
H A Dbltinmodule.c.h1015 "issubclass($module, cls, class_or_tuple, /)\n"
1018 "Return whether \'cls\' is derived from another class or is the same class.\n"
1028 builtin_issubclass_impl(PyObject *module, PyObject *cls,
1035 PyObject *cls; in builtin_issubclass() local
1041 cls = args[0]; in builtin_issubclass()
1043 return_value = builtin_issubclass_impl(module, cls, class_or_tuple); in builtin_issubclass()
/test/testfwk/xdevice/src/xdevice/_core/report/
H A Dresult_reporter.py517 def _check_tests_and_unavailable(cls, child):
527 def _get_module_name(cls, data_report, root):
592 def _find_module_name(cls, result_path, root):
680 def _check_mode(cls, mode):
721 def get_task_info_params(cls, history_path):
723 if check_pub_key_exist() and not cls._check_mode(ModeType.decc):
766 def _handle_module_tests(cls, modules, test_suites_attributes):
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DICUJDKCompare.java301 Class cls = Class.forName("com.ibm.icu.util.VersionInfo"); in process()
302 Field fld = cls.getField("ICU_VERSION"); in process()
736 static int primIndex(Class cls) { in primIndex() argument
738 if (cls == prims[i]) { in primIndex()
742 throw new IllegalStateException("could not find primitive class: " + cls); in primIndex()
/third_party/python/Doc/tools/extensions/
H A Dpyspecific.py188 cls = type(self)
189 logger = logging.getLogger(cls.__qualname__)
193 f"{__file__}:{cls.__qualname__}.known_platforms for a set "
251 cls = type(self)
252 return logging.getLogger(cls.__module__ + "." + cls.__name__)
/kernel/linux/linux-5.10/drivers/ata/
H A Dsata_vsc.c334 u8 cls; in vsc_sata_init_one() local
382 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cls); in vsc_sata_init_one()
383 if (cls == 0x00) in vsc_sata_init_one()
/kernel/linux/linux-6.6/drivers/ata/
H A Dsata_vsc.c334 u8 cls; in vsc_sata_init_one() local
382 pci_read_config_byte(pdev, PCI_CACHE_LINE_SIZE, &cls); in vsc_sata_init_one()
383 if (cls == 0x00) in vsc_sata_init_one()
/test/testfwk/developer_test/src/core/build/
H A Dbuild_testcases.py61 def _copy_folder(cls, source_dir, target_dir):
75 def _get_testcase_outname_by_productform(cls, productform):
102 def _delete_xts_testcase_dir(cls, para):
/third_party/python/Tools/scripts/
H A Dstable_abi.py112 def decorator(cls):
113 itemclasses[kind] = cls
114 return cls
/third_party/python/Lib/test/
H A Dtest_class.py683 def __new__(cls, *args, **kwargs):
684 super().__new__(cls, *args, **kwargs)
717 def __new__(cls, name, bases, attrs, **kwargs):
/third_party/skia/tools/sk_app/android/
H A Dsurface_glue_android.cpp74 jclass cls = env->GetObjectClass(fAndroidApp); in SkiaAndroidApp() local
75 fSetTitleMethodID = env->GetMethodID(cls, "setTitle", "(Ljava/lang/String;)V"); in SkiaAndroidApp()
76 fSetStateMethodID = env->GetMethodID(cls, "setState", "(Ljava/lang/String;)V"); in SkiaAndroidApp()
/third_party/python/Modules/
H A D_pickle.c3610 PyObject *cls; in save_global() local
3654 cls = get_deep_attribute(module, dotted_path, &parent); in save_global()
3656 if (cls == NULL) { in save_global()
3662 if (cls != obj) { in save_global()
3663 Py_DECREF(cls); in save_global()
3669 Py_DECREF(cls); in save_global()
3944 PyObject *cls; in get_class() local
3946 if (_PyObject_LookupAttr(obj, &_Py_ID(__class__), &cls) == 0) { in get_class()
3947 cls = (PyObject *) Py_TYPE(obj); in get_class()
3948 Py_INCREF(cls); in get_class()
4043 PyObject *cls; save_reduce() local
4130 PyObject *cls; save_reduce() local
5815 instantiate(PyObject *cls, PyObject *args) instantiate() argument
5837 PyObject *cls, *args, *obj = NULL; load_obj() local
5866 PyObject *cls = NULL; load_inst() local
5930 PyObject *cls, *args, *kwargs = NULL; load_newobj() local
[all...]

Completed in 32 milliseconds

1...<<21222324252627282930>>...35