Lines Matching refs:m_opaque_ap

24     m_opaque_ap ()  in SBSymbolContext()
29 m_opaque_ap () in SBSymbolContext()
32 m_opaque_ap.reset (new SymbolContext (*sc_ptr)); in SBSymbolContext()
36 m_opaque_ap () in SBSymbolContext()
40 if (m_opaque_ap.get()) in SBSymbolContext()
41 *m_opaque_ap = *rhs.m_opaque_ap; in SBSymbolContext()
43 ref() = *rhs.m_opaque_ap; in SBSymbolContext()
57 m_opaque_ap.reset (new lldb_private::SymbolContext(*rhs.m_opaque_ap.get())); in operator =()
67 if (m_opaque_ap.get()) in SetSymbolContext()
68 *m_opaque_ap = *sc_ptr; in SetSymbolContext()
70 m_opaque_ap.reset (new SymbolContext (*sc_ptr)); in SetSymbolContext()
74 if (m_opaque_ap.get()) in SetSymbolContext()
75 m_opaque_ap->Clear(true); in SetSymbolContext()
82 return m_opaque_ap.get() != NULL; in IsValid()
94 if (m_opaque_ap.get()) in GetModule()
96 module_sp = m_opaque_ap->module_sp; in GetModule()
105 m_opaque_ap.get(), module_sp.get(), sstr.GetData()); in GetModule()
114 return SBCompileUnit (m_opaque_ap.get() ? m_opaque_ap->comp_unit : NULL); in GetCompileUnit()
124 if (m_opaque_ap.get()) in GetFunction()
125 function = m_opaque_ap->function; in GetFunction()
131 m_opaque_ap.get(), function); in GetFunction()
139 return SBBlock (m_opaque_ap.get() ? m_opaque_ap->block : NULL); in GetBlock()
148 if (m_opaque_ap.get()) in GetLineEntry()
149 sb_line_entry.SetLineEntry (m_opaque_ap->line_entry); in GetLineEntry()
154 m_opaque_ap.get(), sb_line_entry.get()); in GetLineEntry()
167 if (m_opaque_ap.get()) in GetSymbol()
168 symbol = m_opaque_ap->symbol; in GetSymbol()
175 m_opaque_ap.get(), symbol); in GetSymbol()
224 return m_opaque_ap.get(); in operator ->()
231 assert (m_opaque_ap.get()); in operator *()
232 return *m_opaque_ap.get(); in operator *()
239 if (m_opaque_ap.get() == NULL) in operator *()
240 m_opaque_ap.reset (new SymbolContext); in operator *()
241 return *m_opaque_ap.get(); in operator *()
247 if (m_opaque_ap.get() == NULL) in ref()
248 m_opaque_ap.reset (new SymbolContext); in ref()
249 return *m_opaque_ap.get(); in ref()
255 return m_opaque_ap.get(); in get()
263 if (m_opaque_ap.get()) in GetDescription()
265 m_opaque_ap->GetDescription (&strm, lldb::eDescriptionLevelFull, NULL); in GetDescription()
278 if (m_opaque_ap.get() && curr_frame_pc.IsValid()) in GetParentOfInlinedScope()
280 …if (m_opaque_ap->GetParentOfInlinedScope (curr_frame_pc.ref(), sb_sc.ref(), parent_frame_addr.ref(… in GetParentOfInlinedScope()