Home
last modified time | relevance | path

Searched refs:argdefs (Results 1 – 25 of 617) sorted by relevance

12345678910>>...25

/dports/devel/py-gevent/gevent-21.8.0/src/gevent/_generated_include/
H A DPyFunctionFastCall_impl_23aa93c516a67d08413dd8d375c3fa410709cf67.h33 PyObject *argdefs = PyFunction_GET_DEFAULTS(func); in __Pyx_PyFunction_FastCallDict() local
54 if (argdefs == NULL && co->co_argcount == nargs) { in __Pyx_PyFunction_FastCallDict()
58 else if (nargs == 0 && argdefs != NULL in __Pyx_PyFunction_FastCallDict()
59 && co->co_argcount == Py_SIZE(argdefs)) { in __Pyx_PyFunction_FastCallDict()
62 args = &PyTuple_GET_ITEM(argdefs, 0); in __Pyx_PyFunction_FastCallDict()
63 result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); in __Pyx_PyFunction_FastCallDict()
91 if (argdefs != NULL) { in __Pyx_PyFunction_FastCallDict()
92 d = &PyTuple_GET_ITEM(argdefs, 0); in __Pyx_PyFunction_FastCallDict()
93 nd = Py_SIZE(argdefs); in __Pyx_PyFunction_FastCallDict()
/dports/net-im/psi/psi-1.5/src/libpsi/tools/simplecli/
H A Dsimplecli.cpp42 argdefs[name] = Arg(name, "", help, false); in defineSwitch()
51 argdefs[name] = Arg(name, valueHelp, help, true); in defineParam()
61 if (!argdefs.contains(originalName)) { in defineAlias()
66 argdefs[originalName].aliases.append(alias); in defineAlias()
68 if (alias.length() == 1 && argdefs[originalName].shortName.isNull()) { in defineAlias()
69 argdefs[originalName].shortName = alias.at(0); in defineAlias()
127 name = argdefs[aliases[name]].name; in parse()
128 if (argdefs[name].needsValue && value.isNull() && n + 1 < argc) { in parse()
168 foreach (Arg arg, argdefs) { in optionsHelp()
183 foreach (Arg arg, argdefs) { in optionsHelp()
H A Dsimplecli.h61 QMap<QByteArray, Arg> argdefs; variable
/dports/devel/nuitka/Nuitka-0.6.17/nuitka/build/static_src/
H A DHelpersCalling.c27 PyObject *argdefs = PyFunction_GET_DEFAULTS(func); in callPythonFunction() local
32 if (kwdefs == NULL && argdefs == NULL && co->co_argcount == count && in callPythonFunction()
66 if (argdefs != NULL) { in callPythonFunction()
67 defaults = &PyTuple_GET_ITEM(argdefs, 0); in callPythonFunction()
68 num_defaults = (int)(Py_SIZE(argdefs)); in callPythonFunction()
96 PyObject *argdefs = PyFunction_GET_DEFAULTS(func); in _fast_function_noargs() local
101 if (kwdefs == NULL && argdefs == NULL && co->co_argcount == 0 && in _fast_function_noargs()
104 …if (argdefs == NULL && co->co_argcount == 0 && co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_N… in _fast_function_noargs()
130 if (argdefs != NULL) { in _fast_function_noargs()
131 defaults = &PyTuple_GET_ITEM(argdefs, 0); in _fast_function_noargs()
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Objects/
H A Dcall.c305 PyObject *argdefs = PyFunction_GET_DEFAULTS(func); in _PyFunction_FastCallDict() local
325 else if (nargs == 0 && argdefs != NULL in _PyFunction_FastCallDict()
329 args = _PyTuple_ITEMS(argdefs); in _PyFunction_FastCallDict()
368 if (argdefs != NULL) { in _PyFunction_FastCallDict()
369 d = _PyTuple_ITEMS(argdefs); in _PyFunction_FastCallDict()
370 nd = PyTuple_GET_SIZE(argdefs); in _PyFunction_FastCallDict()
413 else if (nargs == 0 && argdefs != NULL in _PyFunction_Vectorcall()
417 stack = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
428 if (argdefs != NULL) { in _PyFunction_Vectorcall()
429 d = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Objects/
H A Dcall.c305 PyObject *argdefs = PyFunction_GET_DEFAULTS(func); in _PyFunction_FastCallDict() local
325 else if (nargs == 0 && argdefs != NULL in _PyFunction_FastCallDict()
329 args = _PyTuple_ITEMS(argdefs); in _PyFunction_FastCallDict()
368 if (argdefs != NULL) { in _PyFunction_FastCallDict()
369 d = _PyTuple_ITEMS(argdefs); in _PyFunction_FastCallDict()
370 nd = PyTuple_GET_SIZE(argdefs); in _PyFunction_FastCallDict()
413 else if (nargs == 0 && argdefs != NULL in _PyFunction_Vectorcall()
417 stack = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
428 if (argdefs != NULL) { in _PyFunction_Vectorcall()
429 d = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
[all …]
/dports/lang/python37/Python-3.7.12/Objects/
H A Dcall.c304 PyObject *argdefs = PyFunction_GET_DEFAULTS(func); in _PyFunction_FastCallDict() local
324 else if (nargs == 0 && argdefs != NULL in _PyFunction_FastCallDict()
328 args = &PyTuple_GET_ITEM(argdefs, 0); in _PyFunction_FastCallDict()
367 if (argdefs != NULL) { in _PyFunction_FastCallDict()
368 d = &PyTuple_GET_ITEM(argdefs, 0); in _PyFunction_FastCallDict()
369 nd = PyTuple_GET_SIZE(argdefs); in _PyFunction_FastCallDict()
410 else if (nargs == 0 && argdefs != NULL in _PyFunction_FastCallKeywords()
414 stack = &PyTuple_GET_ITEM(argdefs, 0); in _PyFunction_FastCallKeywords()
425 if (argdefs != NULL) { in _PyFunction_FastCallKeywords()
426 d = &PyTuple_GET_ITEM(argdefs, 0); in _PyFunction_FastCallKeywords()
[all …]
/dports/lang/python-tools/Python-3.8.12/Objects/
H A Dcall.c305 PyObject *argdefs = PyFunction_GET_DEFAULTS(func); in _PyFunction_FastCallDict() local
325 else if (nargs == 0 && argdefs != NULL in _PyFunction_FastCallDict()
329 args = _PyTuple_ITEMS(argdefs); in _PyFunction_FastCallDict()
368 if (argdefs != NULL) { in _PyFunction_FastCallDict()
369 d = _PyTuple_ITEMS(argdefs); in _PyFunction_FastCallDict()
370 nd = PyTuple_GET_SIZE(argdefs); in _PyFunction_FastCallDict()
413 else if (nargs == 0 && argdefs != NULL in _PyFunction_Vectorcall()
417 stack = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
428 if (argdefs != NULL) { in _PyFunction_Vectorcall()
429 d = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
[all …]
/dports/lang/python38/Python-3.8.12/Objects/
H A Dcall.c305 PyObject *argdefs = PyFunction_GET_DEFAULTS(func); in _PyFunction_FastCallDict() local
325 else if (nargs == 0 && argdefs != NULL in _PyFunction_FastCallDict()
329 args = _PyTuple_ITEMS(argdefs); in _PyFunction_FastCallDict()
368 if (argdefs != NULL) { in _PyFunction_FastCallDict()
369 d = _PyTuple_ITEMS(argdefs); in _PyFunction_FastCallDict()
370 nd = PyTuple_GET_SIZE(argdefs); in _PyFunction_FastCallDict()
413 else if (nargs == 0 && argdefs != NULL in _PyFunction_Vectorcall()
417 stack = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
428 if (argdefs != NULL) { in _PyFunction_Vectorcall()
429 d = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Objects/
H A Dcall.c305 PyObject *argdefs = PyFunction_GET_DEFAULTS(func); in _PyFunction_FastCallDict() local
325 else if (nargs == 0 && argdefs != NULL in _PyFunction_FastCallDict()
329 args = _PyTuple_ITEMS(argdefs); in _PyFunction_FastCallDict()
368 if (argdefs != NULL) { in _PyFunction_FastCallDict()
369 d = _PyTuple_ITEMS(argdefs); in _PyFunction_FastCallDict()
370 nd = PyTuple_GET_SIZE(argdefs); in _PyFunction_FastCallDict()
413 else if (nargs == 0 && argdefs != NULL in _PyFunction_Vectorcall()
417 stack = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
428 if (argdefs != NULL) { in _PyFunction_Vectorcall()
429 d = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
[all …]
/dports/devel/py-pytools/pytools-2018.5/pytools/
H A Dpy_codegen.py174 name, code_bytes, argdefs = v
176 marshal.loads(code_bytes), mod_globals, argdefs=argdefs)
/dports/lang/python39/Python-3.9.9/Objects/
H A Dcall.c361 PyObject *argdefs = PyFunction_GET_DEFAULTS(func); in _PyFunction_Vectorcall() local
366 if (argdefs == NULL && co->co_argcount == nargs) { in _PyFunction_Vectorcall()
369 else if (nargs == 0 && argdefs != NULL in _PyFunction_Vectorcall()
370 && co->co_argcount == PyTuple_GET_SIZE(argdefs)) { in _PyFunction_Vectorcall()
373 stack = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
375 stack, PyTuple_GET_SIZE(argdefs), in _PyFunction_Vectorcall()
387 if (argdefs != NULL) { in _PyFunction_Vectorcall()
388 d = _PyTuple_ITEMS(argdefs); in _PyFunction_Vectorcall()
389 nd = PyTuple_GET_SIZE(argdefs); in _PyFunction_Vectorcall()
/dports/lang/python-legacy/Python-2.7.18/Objects/
H A Dfuncobject.c488 PyObject *argdefs; in function_call() local
493 argdefs = PyFunction_GET_DEFAULTS(func); in function_call()
494 if (argdefs != NULL && PyTuple_Check(argdefs)) { in function_call()
495 d = &PyTuple_GET_ITEM((PyTupleObject *)argdefs, 0); in function_call()
496 nd = PyTuple_GET_SIZE(argdefs); in function_call()
/dports/lang/python27/Python-2.7.18/Objects/
H A Dfuncobject.c488 PyObject *argdefs; in function_call() local
493 argdefs = PyFunction_GET_DEFAULTS(func); in function_call()
494 if (argdefs != NULL && PyTuple_Check(argdefs)) { in function_call()
495 d = &PyTuple_GET_ITEM((PyTupleObject *)argdefs, 0); in function_call()
496 nd = PyTuple_GET_SIZE(argdefs); in function_call()
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dfuncobject.c491 PyObject *argdefs; in function_call() local
496 argdefs = PyFunction_GET_DEFAULTS(func); in function_call()
497 if (argdefs != NULL && PyTuple_Check(argdefs)) { in function_call()
498 d = &PyTuple_GET_ITEM((PyTupleObject *)argdefs, 0); in function_call()
499 nd = PyTuple_GET_SIZE(argdefs); in function_call()
/dports/devel/py-watchdog/watchdog-2.1.6/src/watchdog/utils/
H A Decho.py98 argdefs = dict(list(zip(argnames[-len(fn_defaults):], fn_defaults)))
105 defaulted = [format_arg_value((a, argdefs[a]))
/dports/net/frr7-pythontools/frr-frr-7.5.1/python/
H A Dclidef.py272 argdefs = []
281 argdefs.append(',\\\n\t%s %s%s' % (handler.argtype, varname, attr))
315 params['argdefs'] = ''.join(argdefs)
/dports/net/frr7/frr-frr-7.5.1/python/
H A Dclidef.py272 argdefs = []
281 argdefs.append(',\\\n\t%s %s%s' % (handler.argtype, varname, attr))
315 params['argdefs'] = ''.join(argdefs)
/dports/math/libqalculate/libqalculate-3.17.0/libqalculate/
H A DFunction.cc66 unordered_map<size_t, Argument*> argdefs; member in MathFunction_p
370 arg = priv->argdefs[last_argdef_index]; in args()
447 if(priv->argdefs.find(index) != priv->argdefs.end()) { in getArgumentDefinition()
448 return priv->argdefs[index]; in getArgumentDefinition()
453 …for(unordered_map<size_t, Argument*>::iterator it = priv->argdefs.begin(); it != priv->argdefs.end… in clearArgumentDefinitions()
456 priv->argdefs.clear(); in clearArgumentDefinitions()
461 if(priv->argdefs.find(index) != priv->argdefs.end()) { in setArgumentDefinition()
462 delete priv->argdefs[index]; in setArgumentDefinition()
464 priv->argdefs[index] = argdef; in setArgumentDefinition()
539 …for(unordered_map<size_t, Argument*>::iterator it = priv->argdefs.begin(); it != priv->argdefs.end… in testArguments()
[all …]
/dports/devel/py-pyvisa/PyVISA-1.11.3/pyvisa/testsuite/keysight_assisted_tests/
H A D__init__.py50 argdefs=f.__defaults__,
/dports/lang/python-legacy/Python-2.7.18/Doc/library/
H A Dnew.rst39 .. function:: function(code, globals[, name[, argdefs[, closure]]])
44 *argdefs* is given, it must be a tuple and will be used to determine the default
/dports/lang/python27/Python-2.7.18/Doc/library/
H A Dnew.rst39 .. function:: function(code, globals[, name[, argdefs[, closure]]])
44 *argdefs* is given, it must be a tuple and will be used to determine the default
/dports/biology/py-scikit-bio/scikit-bio-0.5.6/skbio/util/
H A D_misc.py66 argdefs=f.__defaults__, closure=f.__closure__)
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/third_party/thriftpy/_shaded_thriftpy/
H A D_compat.py187 argdefs=defaults)
/dports/sysutils/py-salt/salt-3004.1/salt/utils/
H A Dfunctools.py35 argdefs=defaults,

12345678910>>...25