Home
last modified time | relevance | path

Searched refs:getargspec (Results 1 – 25 of 46) sorted by relevance

12

/external/tensorflow/tensorflow/python/util/
Dtf_inspect_test.py74 argspec = tf_inspect.getargspec(test_decorated_function_with_defaults)
87 self.assertEqual(argspec, tf_inspect.getargspec(decorator))
99 self.assertEqual(argspec, tf_inspect.getargspec(outer_decorator))
111 self.assertEqual(outer_argspec, tf_inspect.getargspec(outer_decorator))
123 self.assertEqual(argspec, tf_inspect.getargspec(partial_func))
137 tf_inspect.getargspec(partial_func)
151 tf_inspect.getargspec(partial_func)
166 self.assertEqual(argspec, tf_inspect.getargspec(partial_func))
178 self.assertEqual(argspec, tf_inspect.getargspec(partial_func))
190 self.assertEqual(argspec, tf_inspect.getargspec(partial_func))
[all …]
Dtf_inspect.py93 _getargspec = _inspect.getargspec
104 return _convert_maybe_argspec_to_fullargspec(getargspec(target))
112 def getargspec(obj): function
207 args, varargs, keywords, defaults = getargspec(obj.func)
Ddispatch.py180 if tf_inspect.getargspec(func) != tf_inspect.getargspec(op):
Dtf_contextlib_test.py86 argspec = tf_inspect.getargspec(test_params_and_defaults)
Dtf_export.py396 f_argspec = tf_inspect.getargspec(f)
/external/tensorflow/tensorflow/python/keras/utils/
Dtf_inspect.py79 _getargspec = _inspect.getargspec
90 return _convert_maybe_argspec_to_fullargspec(getargspec(target))
98 def getargspec(obj): function
193 args, varargs, keywords, defaults = getargspec(obj.func)
/external/tensorflow/tensorflow/tools/compatibility/update/
Dgenerate_v2_reorders_map.py92 arg_list = tf_inspect.getargspec(
99 arg_list = tf_inspect.getargspec(attr)[0]
/external/llvm-project/lldb/packages/Python/lldbsuite/support/
Dfuncutils.py4 func_argc = len(inspect.getargspec(func).args)
/external/tensorflow/tensorflow/python/autograph/operators/
Dexceptions.py52 args, _, keywords, _ = tf_inspect.getargspec(expression2)
/external/tensorflow/tensorflow/python/ops/parallel_for/
Dcontrol_flow_ops.py251 argspec = tf_inspect.getargspec(loop_fn)
255 argspec = tf_inspect.getargspec(fn)
262 argspec = tf_inspect.getargspec(loop_class.__call__)
/external/autotest/client/common_lib/cros/
Dxmlrpc_types.py38 constructor_args = inspect.getargspec(klass.__init__)
/external/python/cpython2/Lib/
DDocXMLRPCServer.py78 args, varargs, varkw, defaults = inspect.getargspec(object.im_func)
89 args, varargs, varkw, defaults = inspect.getargspec(object)
Dinspect.py813 def getargspec(func): function
910 args, varargs, varkw, defaults = getargspec(func)
/external/grpc-grpc/src/python/grpcio/grpc/
D_auth.py49 self._is_jwt = 'additional_claims' in inspect.getargspec(
/external/python/oauth2client/oauth2client/
Dutil.py143 args, _, _, defaults = inspect.getargspec(max_positional_args)
/external/python/google-api-python-client/googleapiclient/
D_helpers.py141 args, _, _, defaults = inspect.getargspec(max_positional_args)
/external/autotest/client/cros/cellular/pseudomodem/
Dutils.py87 args, _, _, defaults = inspect.getargspec(func)
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
Ddecorators.py32 arg_spec = inspect.getargspec(func)
/external/python/apitools/apitools/base/protorpclite/
Dutil.py150 args, _, _, defaults = inspect.getargspec(max_positional_args)
/external/chromium-trace/catapult/common/py_utils/py_utils/
Ddiscover.py177 args, _, _, defaults = inspect.getargspec(cls.__init__)
/external/python/cryptography/src/cryptography/
Dutils.py94 signature = inspect.getargspec
/external/tensorflow/tensorflow/tools/api/lib/
Dpython_object_to_proto_visitor.py133 unsanitized_arg_spec = tf_inspect.getargspec(obj)
/external/autotest/frontend/afe/
Drpc_utils.py1151 argspec = inspect.getargspec(func)
1194 argspec = inspect.getargspec(func)
/external/tensorflow/tensorflow/python/framework/
Derrors_impl.py88 init_argspec = tf_inspect.getargspec(self.__class__.__init__)
/external/tensorflow/tensorflow/python/compiler/xla/
Dxla.py617 arg_spec = tf_inspect.getargspec(func)

12