Home
last modified time | relevance | path

Searched refs:getframeinfo (Results 1 – 17 of 17) sorted by relevance

/external/tensorflow/tensorflow/python/keras/utils/
Dtf_inspect.py297 def getframeinfo(*args, **kwargs): function
298 return _inspect.getframeinfo(*args, **kwargs)
/external/tensorflow/tensorflow/python/util/
Dtf_inspect.py311 def getframeinfo(*args, **kwargs): function
312 return _inspect.getframeinfo(*args, **kwargs)
/external/python/setuptools/setuptools/command/
Dinstall.py89 info = inspect.getframeinfo(caller)
/external/llvm/utils/lit/lit/
DLitConfig.py134 file,line,_,_,_ = inspect.getframeinfo(f)
/external/python/cpython2/Lib/
Dinspect.py1002 def getframeinfo(frame, context=1): function
1047 framelist.append((frame,) + getframeinfo(frame, context))
1058 framelist.append((tb.tb_frame,) + getframeinfo(tb, context))
/external/llvm/utils/Misc/
Dzkill14 file,line,_,_,_ = inspect.getframeinfo(f)
/external/llvm-project/llvm/utils/Misc/
Dzkill14 file,line,_,_,_ = inspect.getframeinfo(f)
/external/autotest/server/hosts/
Dssh_host.py109 function_name = inspect.getframeinfo(frame[0]).function
/external/python/cpython3/Lib/
Dinspect.py1483 def getframeinfo(frame, context=1): function
1529 frameinfo = (frame,) + getframeinfo(frame, context)
1541 frameinfo = (tb.tb_frame,) + getframeinfo(tb, context)
/external/tensorflow/tensorflow/python/framework/
Dtest_util.py811 if "test_util.py" in tf_inspect.getframeinfo(obj)[0]:
835 return "frame: {}".format(tf_inspect.getframeinfo(obj))
/external/python/cpython3/Misc/NEWS.d/
D3.6.1rc1.rst479 inspect.getframeinfo() now correctly shows the first line of a context.
D3.5.3rc1.rst429 inspect.getframeinfo() now correctly shows the first line of a context.
D3.7.0a1.rst3694 inspect.getframeinfo() now correctly shows the first line of a context.
/external/python/cpython2/Doc/library/
Dinspect.rst589 .. function:: getframeinfo(frame[, context])
/external/python/cpython3/Lib/test/
Dtest_coroutines.py2159 info = inspect.getframeinfo(inspect.currentframe().f_back)
Dtest_inspect.py492 frame_info = inspect.getframeinfo(self.fodderModule.fr, 50)
/external/python/cpython3/Doc/library/
Dinspect.rst1143 .. function:: getframeinfo(frame, context=1)