Searched refs:getframeinfo (Results 1 – 18 of 18) sorted by relevance
/external/libaom/tools/auto_refactor/ |
D | auto_refactor.py | 18 from inspect import currentframe, getframeinfo 57 debug_print(getframeinfo(currentframe())) 61 debug_print(getframeinfo(currentframe())) 86 debug_print(getframeinfo(currentframe())) 770 debug_print(getframeinfo(currentframe())) 792 debug_print(getframeinfo(currentframe())) 795 debug_print(getframeinfo(currentframe())) 797 debug_print(getframeinfo(currentframe()))
|
/external/gfxstream-protocols/registry/vulkan/scripts/spec_tools/ |
D | shared.py | 12 from inspect import getframeinfo 253 frameinfo = getframeinfo(frame)
|
/external/tensorflow/tensorflow/python/keras/utils/ |
D | tf_inspect.py | 292 def getframeinfo(*args, **kwargs): function 293 return _inspect.getframeinfo(*args, **kwargs)
|
/external/tensorflow/tensorflow/python/util/ |
D | tf_inspect.py | 306 def getframeinfo(*args, **kwargs): function 307 return _inspect.getframeinfo(*args, **kwargs)
|
/external/python/setuptools/setuptools/command/ |
D | install.py | 96 info = inspect.getframeinfo(caller)
|
/external/llvm/utils/lit/lit/ |
D | LitConfig.py | 134 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/llvm/utils/Misc/ |
D | zkill | 14 file,line,_,_,_ = inspect.getframeinfo(f)
|
/external/autotest/server/hosts/ |
D | ssh_host.py | 109 function_name = inspect.getframeinfo(frame[0]).function
|
/external/python/cpython3/Lib/ |
D | inspect.py | 1609 def getframeinfo(frame, context=1): function 1655 frameinfo = (frame,) + getframeinfo(frame, context) 1667 frameinfo = (tb.tb_frame,) + getframeinfo(tb, context)
|
/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 | 3694 inspect.getframeinfo() now correctly shows the first line of a context.
|
/external/tensorflow/tensorflow/python/framework/ |
D | test_util.py | 845 if "test_util.py" in tf_inspect.getframeinfo(obj)[0]: 869 return "frame: {}".format(tf_inspect.getframeinfo(obj))
|
/external/python/cpython2/Doc/library/ |
D | inspect.rst | 589 .. function:: getframeinfo(frame[, context])
|
/external/python/cpython3/Lib/test/ |
D | test_coroutines.py | 2167 info = inspect.getframeinfo(inspect.currentframe().f_back)
|
D | test_inspect.py | 506 frame_info = inspect.getframeinfo(self.fodderModule.fr, 50)
|
/external/python/cpython3/Doc/library/ |
D | inspect.rst | 1225 .. function:: getframeinfo(frame, context=1)
|