Home
last modified time | relevance | path

Searched refs:isframe (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/python/util/
Dtf_inspect.py363 def isframe(object): # pylint: disable=redefined-builtin function
365 return _inspect.isframe(tf_decorator.unwrap(object)[1])
/external/python/cpython2/Lib/
Dinspect.py190 def isframe(object): function
414 if isframe(object):
571 if isframe(object):
696 (isframe(object) and object.f_code.co_name == "<module>")):
1015 if not isframe(frame):
Ddoctest.py1082 if inspect.isframe(obj): obj = obj.f_code
Dpydoc.py107 inspect.isroutine(object) or inspect.isframe(object) or
/external/python/cpython2/Lib/test/
Dtest_inspect.py51 inspect.isframe, inspect.isfunction, inspect.ismethod,
83 self.istest(inspect.isframe, 'tb.tb_frame')
161 self.istest(inspect.isframe, 'mod.fr')
/external/python/cpython3/Lib/
Dinspect.py238 def isframe(object): function
660 if isframe(object):
820 if isframe(object):
962 (isframe(object) and object.f_code.co_name == "<module>")):
1457 if not isframe(frame):
Dpdb.py107 if inspect.isframe(obj) and obj.f_globals is obj.f_locals:
Ddoctest.py1096 if inspect.isframe(obj): obj = obj.f_code
Dpydoc.py116 inspect.isroutine(object) or inspect.isframe(object) or
/external/tensorflow/tensorflow/python/framework/
Dtest_util.py642 if tf_inspect.isframe(obj):
666 if tf_inspect.isframe(obj):
/external/python/cpython3/Lib/test/
Dtest_inspect.py87 inspect.isframe, inspect.isfunction, inspect.ismethod,
136 self.istest(inspect.isframe, 'tb.tb_frame')
290 self.istest(inspect.isframe, 'mod.fr')
/external/python/cpython2/Doc/library/
Dinspect.rst305 .. function:: isframe(object)
/external/python/cpython3/Doc/library/
Dinspect.rst367 .. function:: isframe(object)