Lines Matching refs:frames
213 '''A helper object that will lazily hand out frames for a thread when supplied an index.'''
232 '''An accessor function that returns a list() that contains all frames in a lldb.SBThread object.'''
233 frames = []
235 frames.append(frame)
236 return frames
251 if _newclass: num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of stack frames in this thread as an integer.''')
253 __swig_getmethods__["frames"] = get_thread_frames
254 if _newclass: frames = property(get_thread_frames, None, doc='''A read only property that returns a list() of lldb.SBFrame objects for all frames in this thread.''')
257 if _newclass: frame = property(get_frames_access_object, None, doc='''A read only property that returns an object that can be used to access frames as an array ("frame_12 = lldb.thread.frame[12]").''')