Searched refs:getframeinfo (Results 1 – 19 of 19) sorted by relevance
/external/tensorflow/tensorflow/python/util/ |
D | tf_inspect.py | 285 def getframeinfo(*args, **kwargs): function 286 return _inspect.getframeinfo(*args, **kwargs)
|
/external/python/setuptools/setuptools/command/ |
D | install.py | 89 info = inspect.getframeinfo(caller)
|
/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
D | LitConfig.py | 112 file,line,_,_,_ = inspect.getframeinfo(f)
|
/external/llvm/utils/lit/lit/ |
D | LitConfig.py | 134 file,line,_,_,_ = inspect.getframeinfo(f)
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/ |
D | LitConfig.py | 144 file,line,_,_,_ = inspect.getframeinfo(f)
|
/external/python/cpython2/Lib/ |
D | inspect.py | 1002 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/ |
D | ssh_host.py | 95 function_name = inspect.getframeinfo(frame[0]).function
|
/external/llvm/utils/Misc/ |
D | zkill | 14 file,line,_,_,_ = inspect.getframeinfo(f)
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/Misc/ |
D | zkill | 14 file,line,_,_,_ = inspect.getframeinfo(f)
|
/external/swiftshader/third_party/LLVM/utils/Misc/ |
D | zkill | 14 file,line,_,_,_ = inspect.getframeinfo(f)
|
/external/python/cpython3/Lib/ |
D | inspect.py | 1444 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/ |
D | test_util.py | 643 if "test_util.py" in tf_inspect.getframeinfo(obj)[0]: 667 return "frame: {}".format(tf_inspect.getframeinfo(obj))
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.1rc1.rst | 479 inspect.getframeinfo() now correctly shows the first line of a context.
|
D | 3.5.3rc1.rst | 429 inspect.getframeinfo() now correctly shows the first line of a context.
|
D | 3.7.0a1.rst | 3699 inspect.getframeinfo() now correctly shows the first line of a context.
|
/external/python/cpython2/Doc/library/ |
D | inspect.rst | 589 .. function:: getframeinfo(frame[, context])
|
/external/python/cpython3/Lib/test/ |
D | test_coroutines.py | 2180 info = inspect.getframeinfo(inspect.currentframe().f_back)
|
D | test_inspect.py | 457 frame_info = inspect.getframeinfo(self.fodderModule.fr, 50)
|
/external/python/cpython3/Doc/library/ |
D | inspect.rst | 1103 .. function:: getframeinfo(frame, context=1)
|