Home
last modified time | relevance | path

Searched refs:func_args (Results 1 - 6 of 6) sorted by relevance

/third_party/mbedtls/tests/scripts/
H A Dgenerate_test_code.py910 def write_parameters(out_data_f, test_args, func_args, unique_expressions):
918 :param func_args: Function arguments
925 typ = func_args[i]
1022 func_id, func_args = \
1027 if len(test_args) != len(func_args):
1031 expression_code += write_parameters(out_data_f, test_args, func_args,
/third_party/jinja2/
H A Dext.py548 func_args: t.List[nodes.Expr] = [nodes.Const(singular)]
551 func_args.insert(0, nodes.Const(context))
556 func_args.extend((nodes.Const(plural), plural_expr))
558 node = nodes.Call(nodes.Name(func_name, "load"), func_args, [], None, None)
/third_party/jerryscript/tests/unit-core/
H A Dtest-api.cpp838 jerry_value_t func_args[3] = in HWTEST_F() local
845 val_t = jerry_call_function (func_val, func_args[0], func_args, 3); in HWTEST_F()
/third_party/python/Lib/test/
H A Dtest_nntplib.py1206 func_args = args + (file_factory(post),)
1208 resp = func(*func_args)
1213 func_args = args + (file_factory(post),)
1215 resp = func(*func_args)
H A Dtest_os.py3892 for filenames, func, *func_args in funcs:
3896 func(name, *func_args)
3899 func(name, *func_args)
/third_party/python/Modules/
H A D_testcapimodule.c5251 PyObject *func, *func_args; in test_pyobject_fastcall() local
5255 if (!PyArg_ParseTuple(args, "OO", &func, &func_args)) { in test_pyobject_fastcall()
5259 if (fastcall_args(func_args, &stack, &nargs) < 0) { in test_pyobject_fastcall()
5269 PyObject *func, *func_args, *kwargs; in test_pyobject_fastcalldict() local
5273 if (!PyArg_ParseTuple(args, "OOO", &func, &func_args, &kwargs)) { in test_pyobject_fastcalldict()
5277 if (fastcall_args(func_args, &stack, &nargs) < 0) { in test_pyobject_fastcalldict()
5296 PyObject *func, *func_args, *kwnames = NULL; in test_pyobject_vectorcall() local
5300 if (!PyArg_ParseTuple(args, "OOO", &func, &func_args, &kwnames)) { in test_pyobject_vectorcall()
5304 if (fastcall_args(func_args, &stack, &nargs) < 0) { in test_pyobject_vectorcall()

Completed in 22 milliseconds