HomeSort by relevance Sort by last modified time
    Searched refs:SBBlock (Results 1 - 22 of 22) sorted by null

  /external/lldb/include/lldb/API/
SBBlock.h 1 //===-- SBBlock.h -----------------------------------------------*- C++ -*-===//
20 class SBBlock
24 SBBlock ();
26 SBBlock (const lldb::SBBlock &rhs);
28 ~SBBlock ();
30 const lldb::SBBlock &
31 operator = (const lldb::SBBlock &rhs);
51 lldb::SBBlock
54 lldb::SBBlock
    [all...]
SBDefines.h 29 class SBBlock;
SBSymbolContext.h 14 #include "lldb/API/SBBlock.h"
41 lldb::SBBlock GetBlock ();
48 void SetBlock (lldb::SBBlock block);
SBFrame.h 72 lldb::SBBlock
113 /// for a stack frame. Inlined functions are represented as SBBlock objects
123 lldb::SBBlock
223 friend class SBBlock;
SBFileSpec.h 59 friend class SBBlock;
SBFunction.h 59 lldb::SBBlock
SBStream.h 61 friend class SBBlock;
SBAddress.h 94 lldb::SBBlock
108 friend class SBBlock;
SBValue.h 434 friend class SBBlock;
SBTarget.h 795 friend class SBBlock;
  /external/lldb/source/API/
SBBlock.cpp 1 //===-- SBBlock.cpp ---------------------------------------------*- C++ -*-===//
10 #include "lldb/API/SBBlock.h"
30 SBBlock::SBBlock () :
35 SBBlock::SBBlock (lldb_private::Block *lldb_object_ptr) :
40 SBBlock::SBBlock(const SBBlock &rhs) :
45 const SBBlock
    [all...]
Android.mk 14 SBBlock.cpp \
SBFunction.cpp 215 SBBlock
218 SBBlock sb_block;
SBSymbolContext.cpp 136 SBBlock
139 return SBBlock (m_opaque_ap.get() ? m_opaque_ap->block : NULL);
200 SBSymbolContext::SetBlock (lldb::SBBlock block)
SBAddress.cpp 288 SBBlock
291 SBBlock sb_block;
SBFrame.cpp 312 SBBlock
316 SBBlock sb_block;
346 log->Printf ("SBFrame(%p)::GetBlock () => SBBlock(%p)",
351 SBBlock
354 SBBlock sb_block;
385 log->Printf ("SBFrame(%p)::GetFrameBlock () => SBBlock(%p)",
    [all...]
  /external/lldb/scripts/Python/interface/
SBBlock.i 1 //===-- SWIG Interface for SBBlock ------------------------------*- C++ -*-===//
13 "Represents a lexical block. SBFunction contains SBBlock(s)."
14 ) SBBlock;
15 class SBBlock
19 SBBlock ();
21 SBBlock (const lldb::SBBlock &rhs);
23 ~SBBlock ();
63 lldb::SBBlock
67 lldb::SBBlock
    [all...]
SBSymbolContext.i 64 lldb::SBBlock GetBlock ();
71 void SetBlock (lldb::SBBlock block);
99 if _newclass: block = property(GetBlock, SetBlock, doc='''A read/write property that allows the getting/setting of the block (lldb.SBBlock) in this symbol context.''')
SBFunction.i 83 lldb::SBBlock
106 if _newclass: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the top level lexical block (lldb.SBBlock) for this function.''')
SBFrame.i 101 lldb::SBBlock
149 /// for a stack frame. Inlined functions are represented as SBBlock objects
160 lldb::SBBlock
305 if _newclass: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the block (lldb.SBBlock) for this stack frame.''')
311 if _newclass: name = property(GetFunctionName, None, doc='''A read only property that retuns the name for the function that this frame represents. Inlined stack frame might have a concrete function that differs from the name of the inlined function (a named lldb.SBBlock).''')
SBAddress.i 133 lldb::SBBlock
179 if _newclass: block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the block (lldb.SBBlock) that this address resides within.''')
  /external/lldb/test/python_api/default-constructor/
TestDefaultConstructorForAPIObjects.py 36 obj = lldb.SBBlock()

Completed in 105 milliseconds