Home
last modified time | relevance | path

Searched refs:fargs (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/python/keras/utils/
Dtf_utils_test.py103 def _fn(*fargs, **fkwargs): argument
104 d = fn(*fargs, **fkwargs)
/external/deqp/external/openglcts/modules/gl/
Dgl4cSparseTexture2Tests.hpp224 FunctionToken(std::string fname, std::string fargs) : name(fname), arguments(fargs) in FunctionToken()
/external/icu/icu4c/source/test/intltest/
Dtmsgfmt.cpp1415 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/
Dfunctools.rst86 def newfunc(*fargs, **fkeywords):
89 return func(*(args + fargs), **newkeywords)
/external/python/cpython2/Modules/
Dthreadmodule.c654 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.c1027 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/
Dtest_functools.py12 def newfunc(*fargs, **fkeywords): argument
15 return func(*(args + fargs), **newkeywords)
/external/python/cpython3/Doc/library/
Dfunctools.rst188 def newfunc(*fargs, **fkeywords):
191 return func(*args, *fargs, **newkeywords)