| /external/python/pyyaml/tests/lib/ |
| D | test_yaml_ext.py | 45 def new_emit(events, stream=None, Dumper=yaml.CDumper, **kwds): 49 def new_serialize(node, stream, Dumper=yaml.CDumper, **kwds): 53 def new_serialize_all(nodes, stream=None, Dumper=yaml.CDumper, **kwds): 57 def new_dump(data, stream=None, Dumper=yaml.CDumper, **kwds): 61 def new_dump_all(documents, stream=None, Dumper=yaml.CDumper, **kwds): 65 def new_safe_dump(data, stream=None, **kwds): 69 def new_safe_dump_all(documents, stream=None, **kwds): 260 def wrapper(*args, **kwds):
|
| /external/python/cffi/c/ |
| D | ffi_obj.c | 86 static PyObject *ffiobj_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in ffiobj_new() 335 static PyObject *_ffi_new(FFIObject *self, PyObject *args, PyObject *kwds, in _ffi_new() 352 static PyObject *ffi_new(FFIObject *self, PyObject *args, PyObject *kwds) in ffi_new() 358 PyObject *kwds) in _ffi_new_with_allocator() 387 PyObject *kwds) in ffi_new_allocator() 615 static PyObject *ffi_getctype(FFIObject *self, PyObject *args, PyObject *kwds) in ffi_getctype() 701 PyObject *kwds) in ffi_from_buffer() 752 PyObject *kwds) in ffi_def_extern() 791 static PyObject *ffi_callback(FFIObject *self, PyObject *args, PyObject *kwds) in ffi_callback() 875 static PyObject *ffi_int_const(FFIObject *self, PyObject *args, PyObject *kwds) in ffi_int_const() [all …]
|
| /external/python/cpython3/Lib/ |
| D | contextlib.py | 77 def inner(*args, **kwds): 93 async def inner(*args, **kwds): 102 def __init__(self, func, args, kwds): argument 280 def helper(*args, **kwds): 313 def helper(*args, **kwds): 447 def _create_cb_wrapper(callback, /, *args, **kwds): 496 def callback(self, callback, /, *args, **kwds): 606 def _create_async_cb_wrapper(callback, /, *args, **kwds): 641 def push_async_callback(self, callback, /, *args, **kwds):
|
| /external/python/cpython3/Objects/ |
| D | namespaceobject.c | 22 namespace_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in namespace_new() 41 namespace_init(_PyNamespaceObject *ns, PyObject *args, PyObject *kwds) in namespace_init() 247 _PyNamespace_New(PyObject *kwds) in _PyNamespace_New()
|
| D | exceptions.c | 39 BaseException_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in BaseException_new() 67 BaseException_init(PyBaseExceptionObject *self, PyObject *args, PyObject *kwds) in BaseException_init() 511 StopIteration_init(PyStopIterationObject *self, PyObject *args, PyObject *kwds) in StopIteration_init() 575 SystemExit_init(PySystemExitObject *self, PyObject *args, PyObject *kwds) in SystemExit_init() 639 ImportError_init(PyImportErrorObject *self, PyObject *args, PyObject *kwds) in ImportError_init() 968 OSError_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in OSError_new() 1037 OSError_init(PyOSErrorObject *self, PyObject *args, PyObject *kwds) in OSError_init() 1331 NameError_init(PyNameErrorObject *self, PyObject *args, PyObject *kwds) in NameError_init() 1405 AttributeError_init(PyAttributeErrorObject *self, PyObject *args, PyObject *kwds) in AttributeError_init() 1479 SyntaxError_init(PySyntaxErrorObject *self, PyObject *args, PyObject *kwds) in SyntaxError_init() [all …]
|
| /external/python/cpython2/Lib/test/ |
| D | test_decorators.py | 4 def funcattrs(**kwds): 21 def __init__(self, exprstr, func, args, kwds): argument 31 def check(*args, **kwds): 45 def call(*args, **kwds): 97 def noteargs(*args, **kwds):
|
| /external/python/cpython3/Lib/email/ |
| D | headerregistry.py | 266 def parse(cls, value, kwds): argument 293 def parse(cls, value, kwds): argument 338 def parse(cls, value, kwds): argument 409 def parse(cls, value, kwds): argument 447 def parse(cls, value, kwds): argument 511 def parse(cls, value, kwds): argument 531 def parse(cls, value, kwds): argument
|
| /external/python/cpython3/Lib/test/ |
| D | test_grammar.py | 412 def __prepare__(metacls, name, bases, **kwds): 731 def f(**kwds,): pass 733 def f(a, **kwds,): pass 736 def f(*args, **kwds,): pass 739 def f(a, *args, **kwds,): pass 740 def f(*args, b, **kwds,): pass 741 def f(*, b, **kwds,): pass 742 def f(a, *args, b, **kwds,): pass 743 def f(a, *, b, **kwds,): pass 766 l12 = lambda **kwds,: 0 [all …]
|
| /external/python/pyyaml/lib/yaml/ |
| D | __init__.py | 208 def serialize(node, stream=None, Dumper=Dumper, **kwds): 248 def dump(data, stream=None, Dumper=Dumper, **kwds): 255 def safe_dump_all(documents, stream=None, **kwds): 263 def safe_dump(data, stream=None, **kwds): 351 def __init__(cls, name, bases, kwds): argument
|
| /external/python/apitools/apitools/base/py/ |
| D | credentials_lib.py | 138 **kwds): 238 def __init__(self, scopes=None, service_account_name='default', **kwds): 277 def Get(cls, *args, **kwds): 462 def __init__(self, scopes, **kwds): 470 def Get(cls, *args, **kwds):
|
| D | transfer.py | 202 **kwds): 222 def FromFile(cls, filename, overwrite=False, auto_transfer=True, **kwds): 232 def FromStream(cls, stream, auto_transfer=True, total_size=None, **kwds): 239 **kwds): 586 gzip_encoded=False, **kwds): 609 gzip_encoded=False, **kwds): 626 gzip_encoded=False, **kwds): 637 gzip_encoded=False, **kwds):
|
| /external/python/cpython3/Doc/includes/ |
| D | custom2.c | 21 Custom_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in Custom_new() 42 Custom_init(CustomObject *self, PyObject *args, PyObject *kwds) in Custom_init()
|
| D | custom3.c | 21 Custom_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in Custom_new() 42 Custom_init(CustomObject *self, PyObject *args, PyObject *kwds) in Custom_init()
|
| /external/python/cpython2/Doc/includes/ |
| D | noddy2.c | 20 Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in Noddy_new() 45 Noddy_init(Noddy *self, PyObject *args, PyObject *kwds) in Noddy_init()
|
| D | noddy4.c | 55 Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in Noddy_new() 80 Noddy_init(Noddy *self, PyObject *args, PyObject *kwds) in Noddy_init()
|
| D | noddy3.c | 20 Noddy_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in Noddy_new() 45 Noddy_init(Noddy *self, PyObject *args, PyObject *kwds) in Noddy_init()
|
| /external/tensorflow/tensorflow/python/eager/ |
| D | backprop.py | 236 def grad_fn(*args, **kwds): 309 def grad_fn(*args, **kwds): 409 def decorated(*args, **kwds): 506 def decorated(*args, **kwds): 554 def decorated(*args, **kwds):
|
| /external/python/cpython2/Lib/ |
| D | collections.py | 50 def __init__(*args, **kwds): 458 def __init__(*args, **kwds): 528 def update(*args, **kwds): 571 def subtract(*args, **kwds): 732 def _replace(self, _map=map, **kwds):
|
| /external/python/cpython2/Objects/ |
| D | exceptions.c | 30 BaseException_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in BaseException_new() 56 BaseException_init(PyBaseExceptionObject *self, PyObject *args, PyObject *kwds) in BaseException_init() 507 SystemExit_init(PySystemExitObject *self, PyObject *args, PyObject *kwds) in SystemExit_init() 590 PyObject *kwds) in EnvironmentError_init() 852 WindowsError_init(PyWindowsErrorObject *self, PyObject *args, PyObject *kwds) in WindowsError_init() 1048 SyntaxError_init(PySyntaxErrorObject *self, PyObject *args, PyObject *kwds) in SyntaxError_init() 1548 UnicodeError_init(PyUnicodeErrorObject *self, PyObject *args, PyObject *kwds, in UnicodeError_init() 1618 UnicodeEncodeError_init(PyObject *self, PyObject *args, PyObject *kwds) in UnicodeEncodeError_init() 1706 UnicodeDecodeError_init(PyObject *self, PyObject *args, PyObject *kwds) in UnicodeDecodeError_init() 1791 PyObject *kwds) in UnicodeTranslateError_init()
|
| /external/python/cffi/cffi/ |
| D | setuptools_ext.py | 73 def _set_py_limited_api(Extension, kwds): argument 106 def _add_c_module(dist, ffi, module_name, source, source_extension, kwds): argument
|
| D | vengine_gen.py | 21 def patch_extension_kwds(self, kwds): argument 114 def _load(self, module, step_name, **kwds): 127 def _loaded_noop(self, tp, name, module, **kwds): 249 def _loaded_gen_struct(self, tp, name, module, **kwds): 259 def _loaded_gen_union(self, tp, name, module, **kwds): 385 def _loaded_gen_anonymous(self, tp, name, module, **kwds):
|
| /external/python/cpython2/Lib/curses/ |
| D | wrapper.py | 12 def wrapper(func, *args, **kwds):
|
| /external/python/cffi/testing/ |
| D | support.py | 74 def _verify(ffi, module_name, preamble, *args, **kwds): 91 def typeof_disabled(*args, **kwds):
|
| /external/python/cpython3/Tools/peg_generator/peg_extension/ |
| D | peg_extension.c | 23 parse_file(PyObject *self, PyObject *args, PyObject *kwds) in parse_file() 71 parse_string(PyObject *self, PyObject *args, PyObject *kwds) in parse_string()
|
| /external/python/cpython2/Lib/multiprocessing/ |
| D | __init__.py | 248 def Value(typecode_or_type, *args, **kwds): 255 def Array(typecode_or_type, size_or_initializer, **kwds):
|