Searched refs:fargs (Results 1 – 8 of 8) sorted by relevance
/external/tensorflow/tensorflow/python/keras/utils/ |
D | tf_utils_test.py | 103 def _fn(*fargs, **fkwargs): argument 104 d = fn(*fargs, **fkwargs)
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cSparseTexture2Tests.hpp | 224 FunctionToken(std::string fname, std::string fargs) : name(fname), arguments(fargs) in FunctionToken()
|
/external/icu/icu4c/source/test/intltest/ |
D | tmsgfmt.cpp | 1415 const Formattable fargs( d, Formattable::kIsDate ); in _testCopyConstructor2() local 1428 result = fmt1->format( &fargs, 1, resultStr, fp, status ); in _testCopyConstructor2() 1447 result = fmt1->format( &fargs, 1, resultStr, fp, status ); in _testCopyConstructor2() 1448 result = fmt2->format( &fargs, 1, resultStr, fp, status ); in _testCopyConstructor2() 1449 result = fmt3->format( &fargs, 1, resultStr, fp, status ); in _testCopyConstructor2() 1450 result = fmt4->format( &fargs, 1, resultStr, fp, status ); in _testCopyConstructor2()
|
/external/python/cpython2/Doc/library/ |
D | functools.rst | 86 def newfunc(*fargs, **fkeywords): 89 return func(*(args + fargs), **newkeywords)
|
/external/python/cpython2/Modules/ |
D | threadmodule.c | 654 thread_PyThread_start_new_thread(PyObject *self, PyObject *fargs) in thread_PyThread_start_new_thread() argument 660 if (!PyArg_UnpackTuple(fargs, "start_new_thread", 2, 3, in thread_PyThread_start_new_thread()
|
/external/python/cpython3/Modules/ |
D | _threadmodule.c | 1027 thread_PyThread_start_new_thread(PyObject *self, PyObject *fargs) in thread_PyThread_start_new_thread() argument 1033 if (!PyArg_UnpackTuple(fargs, "start_new_thread", 2, 3, in thread_PyThread_start_new_thread()
|
/external/python/cpython2/Lib/test/ |
D | test_functools.py | 12 def newfunc(*fargs, **fkeywords): argument 15 return func(*(args + fargs), **newkeywords)
|
/external/python/cpython3/Doc/library/ |
D | functools.rst | 188 def newfunc(*fargs, **fkeywords): 191 return func(*args, *fargs, **newkeywords)
|