| /external/python/cpython2/Lib/ |
| inspect.py | 20 getargspec(), getargvalues(), getcallargs() - get info about function arguments 803 def getargspec(func): function [all...] |
| /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/ |
| _typecheck.py | 233 spec = tf_inspect.getargspec(f)
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| inspect.py | 20 getargspec(), getargvalues(), getcallargs() - get info about function arguments 803 def getargspec(func): function [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| inspect.py | 20 getargspec(), getargvalues(), getcallargs() - get info about function arguments 803 def getargspec(func): function [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| inspect.py | 20 getargspec(), getargvalues(), getcallargs() - get info about function arguments 803 def getargspec(func): function [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| inspect.py | 20 getargspec(), getargvalues(), getcallargs() - get info about function arguments 803 def getargspec(func): function [all...] |
| /external/tensorflow/tensorflow/python/keras/_impl/keras/utils/ |
| generic_utils.py | 163 arg_spec = tf_inspect.getargspec(cls.from_config) 282 arg_spec = tf_inspect.getargspec(fn)
|
| /external/tensorflow/tensorflow/python/util/ |
| deprecation.py | 335 arg_spec: Output from tf_inspect.getargspec on the called function. 355 arg_spec = tf_inspect.getargspec(func)
|
| /external/swiftshader/third_party/subzero/pydir/ |
| gen_arm32_reg_tables.py | 14 return (ArgName for ArgName in inspect.getargspec(Method).args
|
| /external/tensorflow/tensorflow/contrib/learn/python/learn/ |
| metric_spec.py | 48 return tuple(tf_inspect.getargspec(fn).args)
|
| experiment_test.py | 129 supported_args = tuple(tf_inspect.getargspec(method).args) [all...] |
| /external/tensorflow/tensorflow/python/eager/ |
| graph_callable.py | 269 func_num_args = len(tf_inspect.getargspec(func).args)
|
| backprop.py | 449 args = tf_inspect.getargspec(f).args
|
| /external/toolchain-utils/crosperf/ |
| benchmark_run_unittest.py | 107 arg_spec = inspect.getargspec(benchmark_run.BenchmarkRun.__init__)
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
| test_inspect.py | 26 # getclasstree, getargspec, getargvalues, formatargspec, formatargvalues,
420 args, varargs, varkw, defaults = inspect.getargspec(routine)
|
| test_collections.py | [all...] |
| /external/python/cpython2/Lib/test/ |
| test_inspect.py | 29 # getclasstree, getargspec, getargvalues, formatargspec, formatargvalues, 488 args, varargs, varkw, defaults = inspect.getargspec(routine) [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| test_inspect.py | 26 # getclasstree, getargspec, getargvalues, formatargspec, formatargvalues, 470 args, varargs, varkw, defaults = inspect.getargspec(routine) [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/test/ |
| test_inspect.py | 26 # getclasstree, getargspec, getargvalues, formatargspec, formatargvalues, 470 args, varargs, varkw, defaults = inspect.getargspec(routine) [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_inspect.py | 26 # getclasstree, getargspec, getargvalues, formatargspec, formatargvalues, 470 args, varargs, varkw, defaults = inspect.getargspec(routine) [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_inspect.py | 26 # getclasstree, getargspec, getargvalues, formatargspec, formatargvalues, 470 args, varargs, varkw, defaults = inspect.getargspec(routine) [all...] |
| /external/autotest/frontend/afe/ |
| rpc_utils.py | [all...] |
| /external/python/cpython2/Doc/library/ |
| inspect.rst | 476 .. function:: getargspec(func) 507 :func:`getargspec`. The format\* arguments are the corresponding optional
|
| /external/autotest/client/cros/cellular/wardmodem/ |
| at_transceiver.py | 369 at_command, action, inspect.getargspec(function), str(e))
|
| /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/ |
| estimator.py | 194 arg for arg in tf_inspect.getargspec(fn.func).args[len(fn.args):] 198 return tuple(tf_inspect.getargspec(fn).args) [all...] |