Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/util/
Dtf_inspect.py285 def getframeinfo(*args, **kwargs): function
286 return _inspect.getframeinfo(*args, **kwargs)
/external/python/setuptools/setuptools/command/
Dinstall.py89 info = inspect.getframeinfo(caller)
/external/swiftshader/third_party/LLVM/utils/lit/lit/
DLitConfig.py112 file,line,_,_,_ = inspect.getframeinfo(f)
/external/llvm/utils/lit/lit/
DLitConfig.py134 file,line,_,_,_ = inspect.getframeinfo(f)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
DLitConfig.py144 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/autotest/server/hosts/
Dssh_host.py95 function_name = inspect.getframeinfo(frame[0]).function
/external/llvm/utils/Misc/
Dzkill14 file,line,_,_,_ = inspect.getframeinfo(f)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/Misc/
Dzkill14 file,line,_,_,_ = inspect.getframeinfo(f)
/external/swiftshader/third_party/LLVM/utils/Misc/
Dzkill14 file,line,_,_,_ = inspect.getframeinfo(f)
/external/python/cpython3/Lib/
Dinspect.py1444 def getframeinfo(frame, context=1): function
1490 frameinfo = (frame,) + getframeinfo(frame, context)
1502 frameinfo = (tb.tb_frame,) + getframeinfo(tb, context)
/external/tensorflow/tensorflow/python/framework/
Dtest_util.py643 if "test_util.py" in tf_inspect.getframeinfo(obj)[0]:
667 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.rst3699 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.py2180 info = inspect.getframeinfo(inspect.currentframe().f_back)
Dtest_inspect.py457 frame_info = inspect.getframeinfo(self.fodderModule.fr, 50)
/external/python/cpython3/Doc/library/
Dinspect.rst1103 .. function:: getframeinfo(frame, context=1)