Lines Matching refs:frame
102 'file', 'function', 'frame', 'limit', 'children'])):
104 _fields = ['frame', 'limit']
105 _sort = ['limit', 'frame']
106 _types = {'frame': Int, 'limit': Int}
110 frame=0, limit=0, children=set()):
112 Int(frame), Int(limit),
117 self.frame + other.frame,
198 for source, (s_file, s_function, frame, targets) in callgraph.items():
223 callgraph_[source] = (s_file, s_function, frame, targets)
228 for source, (s_file, s_function, frame, targets) in callgraph.items():
237 callgraph_[source] = (s_file, s_function, frame, targets)
246 _, _, frame, targets = callgraph[source]
256 return frame + limit
268 for source, (s_file, s_function, frame, targets) in callgraph.items():
271 results.append(StackResult(s_file, s_function, frame, limit, children))