/external/lldb/include/lldb/API/ |
SBType.h | 1 //===-- SBType.h ------------------------------------------------*- C++ -*-===// 37 lldb::SBType 57 friend class SBType; 71 class SBType 75 SBType(); 77 SBType (const lldb::SBType &rhs); 79 ~SBType (); 99 lldb::SBType 102 lldb::SBType [all...] |
SBTypeNameSpecifier.h | 26 SBTypeNameSpecifier (SBType type); 38 SBType
|
SBDefines.h | 68 class SBType;
|
SBFunction.h | 56 lldb::SBType
|
SBStream.h | 88 friend class SBType;
|
SBValue.h | 15 #include "lldb/API/SBType.h" 150 CreateChildAtOffset (const char *name, uint32_t offset, lldb::SBType type); 153 Cast (lldb::SBType type); 164 lldb::SBType type); 171 lldb::SBType type); 343 lldb::SBType
|
SBModule.h | 196 lldb::SBType 202 lldb::SBType
|
SBTarget.h | 19 #include "lldb/API/SBType.h" 741 lldb::SBType 747 lldb::SBType
|
/external/lldb/source/API/ |
SBType.cpp | 1 //===-- SBType.cpp ----------------------------------------------*- C++ -*-===// 17 #include "lldb/API/SBType.h" 30 SBType::SBType() : 35 SBType::SBType (const ClangASTType &type) : 41 SBType::SBType (const lldb::TypeSP &type_sp) : 46 SBType::SBType (const lldb::TypeImplSP &type_impl_sp) [all...] |
SBTypeNameSpecifier.cpp | 15 #include "lldb/API/SBType.h" 35 SBTypeNameSpecifier::SBTypeNameSpecifier (SBType type) : 65 SBType 69 return SBType(); 72 return SBType(c_type); 73 return SBType();
|
SBModule.cpp | 495 lldb::SBType 498 SBType sb_type; 506 sb_type = SBType (module_sp->FindFirstType(sc, name, exact_match)); 509 sb_type = SBType (ClangASTContext::GetBasicType (module_sp->GetClangASTContext().getASTContext(), name)); 514 lldb::SBType 519 return SBType (ClangASTContext::GetBasicType (module_sp->GetClangASTContext().getASTContext(), type)); 520 return SBType(); 547 retval.Append(SBType(type_sp)); 552 SBType sb_type(ClangASTContext::GetBasicType (module_sp->GetClangASTContext().getASTContext(), name));
|
Android.mk | 51 SBType.cpp \
|
SBFunction.cpp | 202 SBType 205 SBType sb_type;
|
SBTarget.cpp | [all...] |
SBValue.cpp | 466 SBType 470 SBType sb_type; 482 log->Printf ("SBValue(%p)::GetType => SBType(%p)", value_sp.get(), type_sp.get()); 663 SBValue::CreateChildAtOffset (const char *name, uint32_t offset, SBType type) 692 SBValue::Cast (SBType type) 755 SBValue::CreateValueFromAddress(const char* name, lldb::addr_t address, SBType sb_type) 800 SBValue::CreateValueFromData (const char* name, SBData data, SBType type) [all...] |
/external/lldb/scripts/Python/interface/ |
SBTypeNameSpecifier.i | 25 SBTypeNameSpecifier (SBType type); 40 lldb::SBType
|
SBType.i | 1 //===-- SWIG Interface for SBType -------------------------------*- C++ -*-===// 31 lldb::SBType 51 if _newclass: type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the type (lldb.SBType) for this member.''') 73 returns a SBType. 75 SBType supports the eq/ne operator. For example, 137 # SBType.GetBasicType() takes an enum 'BasicType' (lldb-enumerations.h). 143 ") SBType; 144 class SBType 147 SBType (); 149 SBType (const lldb::SBType &rhs) [all...] |
SBValue.i | 233 CreateChildAtOffset (const char *name, uint32_t offset, lldb::SBType type); 236 SBValue::Cast (lldb::SBType type); 245 CreateValueFromAddress(const char* name, lldb::addr_t address, lldb::SBType type); 250 lldb::SBType type); 252 lldb::SBType 420 if _newclass: type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represents the type for this value.''')
|
SBFunction.i | 80 lldb::SBType 121 if _newclass: type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the return type (lldb.SBType) for this function.''')
|
SBModule.i | 221 lldb::SBType 227 lldb::SBType
|
SBTarget.i | 582 lldb::SBType 588 lldb::SBType
|
/external/lldb/test/python_api/default-constructor/ |
sb_type.py | 20 lldb.SBType.IsPointerType(None)
|
sb_value.py | 50 invalid_type = lldb.SBType()
|
TestDefaultConstructorForAPIObjects.py | 315 obj = lldb.SBType() 320 self.fail("lldb.SBType() should fail, not succeed!") 325 # Unreachable code because lldb.SBType() should fail.
|
/external/lldb/examples/functions/ |
main.cpp | 266 SBType function_type = function.GetType(); 267 SBType return_type = function_type.GetFunctionReturnType(); 302 SBType function_arg_type = function_args.GetTypeAtIndex(function_arg_idx); 331 SBType function_arg_type = function_args.GetTypeAtIndex(function_arg_idx);
|