OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SBCompileUnit
(Results
1 - 22
of
22
) sorted by null
/external/lldb/source/API/
SBCompileUnit.cpp
1
//===--
SBCompileUnit
.cpp ---------------------------------------*- C++ -*-===//
10
#include "lldb/API/
SBCompileUnit
.h"
25
SBCompileUnit
::
SBCompileUnit
() :
30
SBCompileUnit
::
SBCompileUnit
(lldb_private::CompileUnit *lldb_object_ptr) :
35
SBCompileUnit
::
SBCompileUnit
(const
SBCompileUnit
&rhs) :
40
const
SBCompileUnit
[
all
...]
Android.mk
21
SBCompileUnit
.cpp \
SBSymbolContext.cpp
111
SBCompileUnit
114
return
SBCompileUnit
(m_opaque_ap.get() ? m_opaque_ap->comp_unit : NULL);
188
SBSymbolContext::SetCompileUnit (lldb::
SBCompileUnit
compile_unit)
SBAddress.cpp
270
SBCompileUnit
273
SBCompileUnit
sb_comp_unit;
SBModule.cpp
304
SBCompileUnit
307
SBCompileUnit
sb_cu;
SBFrame.cpp
193
SBCompileUnit
197
SBCompileUnit
sb_comp_unit;
227
log->Printf ("SBFrame(%p)::GetCompileUnit () =>
SBCompileUnit
(%p)",
[
all
...]
/external/lldb/include/lldb/API/
SBCompileUnit.h
1
//===--
SBCompileUnit
.h -----------------------------------------*- C++ -*-===//
18
class
SBCompileUnit
22
SBCompileUnit
();
24
SBCompileUnit
(const lldb::
SBCompileUnit
&rhs);
26
~
SBCompileUnit
();
28
const lldb::
SBCompileUnit
&
29
operator = (const lldb::
SBCompileUnit
&rhs);
82
operator == (const lldb::
SBCompileUnit
&rhs) const;
85
operator != (const lldb::
SBCompileUnit
&rhs) const
[
all
...]
SBDefines.h
38
class
SBCompileUnit
;
SBSymbolContext.h
15
#include "lldb/API/
SBCompileUnit
.h"
39
lldb::
SBCompileUnit
GetCompileUnit ();
46
void SetCompileUnit (lldb::
SBCompileUnit
compile_unit);
SBFileSpec.h
60
friend class
SBCompileUnit
;
SBLineEntry.h
75
friend class
SBCompileUnit
;
SBStream.h
65
friend class
SBCompileUnit
;
SBAddress.h
88
lldb::
SBCompileUnit
SBFrame.h
60
lldb::
SBCompileUnit
SBModule.h
116
lldb::
SBCompileUnit
SBType.h
238
friend class
SBCompileUnit
;
/external/lldb/scripts/Python/interface/
SBCompileUnit.i
1
//===-- SWIG Interface for
SBCompileUnit
------------------------*- C++ -*-===//
15
SBCompileUnit
supports line entry iteration. For example,
46
)
SBCompileUnit
;
47
class
SBCompileUnit
51
SBCompileUnit
();
53
SBCompileUnit
(const lldb::
SBCompileUnit
&rhs);
55
~
SBCompileUnit
();
113
operator == (const lldb::
SBCompileUnit
&rhs) const;
116
operator != (const lldb::
SBCompileUnit
&rhs) const
[
all
...]
SBSymbolContext.i
62
lldb::
SBCompileUnit
GetCompileUnit ();
69
void SetCompileUnit (lldb::
SBCompileUnit
compile_unit);
91
if _newclass: compile_unit = property(GetCompileUnit, SetCompileUnit, doc='''A read/write property that allows the getting/setting of the compile unit (lldb.
SBCompileUnit
) in this symbol context.''')
SBAddress.i
127
lldb::
SBCompileUnit
170
if _newclass: compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.
SBCompileUnit
) that this address resides within.''')
SBFrame.i
87
lldb::
SBCompileUnit
296
if _newclass: compile_unit = property(GetCompileUnit, None, doc='''A read only property that returns an lldb object that represents the compile unit (lldb.
SBCompileUnit
) for this stack frame.''')
SBModule.i
173
lldb::
SBCompileUnit
408
'''A helper object that will lazily hand out lldb.
SBCompileUnit
objects for a module when supplied an index, full or partial path, or regular expression.'''
476
if _newclass: compile_units = property(get_compile_units_array, None, doc='''A read only property that returns a list() of lldb.
SBCompileUnit
objects contained in this module.''')
482
if _newclass: section = property(get_sections_access_object, None, doc='''A read only property that can be used to access compile units by index ("compile_unit = module.compile_unit[0]"), name ("compile_unit = module.compile_unit[\'main.cpp\']"), or using a regular expression ("compile_unit = module.compile_unit[re.compile(...)]"). The return value is a single lldb.
SBCompileUnit
object for array access or by full or partial path, and a list() of lldb.
SBCompileUnit
objects regular expressions.''')
/external/lldb/test/python_api/default-constructor/
TestDefaultConstructorForAPIObjects.py
94
obj = lldb.
SBCompileUnit
()
Completed in 231 milliseconds