HomeSort by relevance Sort by last modified time
    Searched refs:type_sp (Results 1 - 25 of 29) sorted by null

1 2

  /external/lldb/include/lldb/Core/
ValueObjectMemory.h 33 lldb::TypeSP &type_sp);
77 lldb::TypeSP &type_sp);
  /external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
ItaniumABILanguageRuntime.cpp 147 lldb::TypeSP type_sp; local
156 type_sp = class_types.GetTypeAtIndex(0);
161 type_sp->GetID(),
162 type_sp->GetName().GetCString());
173 type_sp = class_types.GetTypeAtIndex(i);
174 if (type_sp)
180 type_sp->GetID(),
181 type_sp->GetName().GetCString());
188 type_sp = class_types.GetTypeAtIndex(i);
189 if (type_sp)
    [all...]
  /external/lldb/source/DataFormatters/
TypeCategory.cpp 269 TypeCategoryImpl::GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp)
273 if (type_sp)
275 if (type_sp->IsRegex())
276 m_regex_summary_nav->GetExact(ConstString(type_sp->GetName()),retval);
278 m_summary_nav->GetExact(ConstString(type_sp->GetName()),retval);
285 TypeCategoryImpl::GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp)
289 if (type_sp)
291 if (type_sp->IsRegex())
292 m_regex_filter_nav->GetExact(ConstString(type_sp->GetName()),retval);
294 m_filter_nav->GetExact(ConstString(type_sp->GetName()),retval)
    [all...]
DataVisualization.cpp 109 DataVisualization::GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp)
111 return GetFormatManager().GetSummaryForType(type_sp);
125 DataVisualization::GetSyntheticChildrenForType (lldb::TypeNameSpecifierImplSP type_sp)
127 return GetFormatManager().GetSyntheticChildrenForType(type_sp);
132 DataVisualization::GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp)
134 return GetFormatManager().GetFilterForType(type_sp);
139 DataVisualization::GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp)
141 return GetFormatManager().GetSyntheticForType(type_sp);
FormatManager.cpp 167 FormatManager::GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp)
169 if (!type_sp)
182 lldb::TypeSummaryImplSP summary_current_sp = category_sp->GetSummaryForType(type_sp);
193 FormatManager::GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp)
195 if (!type_sp)
208 lldb::TypeFilterImplSP filter_current_sp((TypeFilterImpl*)category_sp->GetFilterForType(type_sp).get());
220 FormatManager::GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp)
222 if (!type_sp)
235 lldb::ScriptedSyntheticChildrenSP synth_current_sp((ScriptedSyntheticChildren*)category_sp->GetSyntheticForType(type_sp).get());
248 FormatManager::GetSyntheticChildrenForType (lldb::TypeNameSpecifierImplSP type_sp)
    [all...]
  /external/lldb/source/Symbol/
TypeList.cpp 54 TypeList::Insert (const TypeSP& type_sp)
57 if (type_sp)
58 m_types.insert(std::make_pair(type_sp->GetID(), type_sp));
63 TypeList::InsertUnique (const TypeSP& type_sp)
65 if (type_sp)
67 user_id_t type_uid = type_sp->GetID();
72 if (pos->second.get() == type_sp.get())
76 Insert (type_sp);
139 TypeList::ForEach (std::function <bool(const lldb::TypeSP &type_sp)> const &callback) cons
    [all...]
Type.cpp 367 lldb::TypeSP type_sp; local
372 type_sp = typedef_type->shared_from_this();
374 return type_sp;
878 TypeAndOrName::SetTypeSP (lldb::TypeSP type_sp)
880 m_type_sp = type_sp;
881 if (type_sp)
882 m_type_name = type_sp->GetName();
926 TypeImpl::SetType (const lldb::TypeSP &type_sp)
928 if (type_sp)
930 m_clang_ast_type = type_sp->GetClangForwardType()
    [all...]
  /external/lldb/include/lldb/DataFormatters/
DataVisualization.h 75 GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp);
79 GetSyntheticChildrenForType (lldb::TypeNameSpecifierImplSP type_sp);
83 GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp);
87 GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp);
FormatManager.h 129 GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp);
132 GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp);
136 GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp);
141 GetSyntheticChildrenForType (lldb::TypeNameSpecifierImplSP type_sp);
TypeCategory.h 90 GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp);
93 GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp);
97 GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp);
  /external/lldb/include/lldb/Symbol/
TypeList.h 55 ForEach (std::function <bool(const lldb::TypeSP &type_sp)> const &callback) const;
58 ForEach (std::function <bool(lldb::TypeSP &type_sp)> const &callback);
Type.h 319 TypeAndOrName (lldb::TypeSP &type_sp);
348 SetTypeSP (lldb::TypeSP type_sp);
443 SetType (const lldb::TypeSP &type_sp);
488 lldb::TypeImplSP type_sp; local
490 type_sp = m_content[idx];
491 return type_sp;
  /external/lldb/source/Plugins/SymbolFile/DWARF/
UniqueDWARFASTType.h 43 UniqueDWARFASTType (lldb::TypeSP &type_sp,
49 m_type_sp (type_sp),
SymbolFileDWARF.cpp 4486 TypeSP type_sp; local
4779 TypeSP type_sp; local
4984 TypeSP type_sp; local
5163 TypeSP type_sp; local
5614 TypeSP type_sp; local
    [all...]
SymbolFileDWARFDebugMap.cpp 1180 TypeSP type_sp; local
1217 TypeSP type_sp; local
    [all...]
  /external/lldb/source/Core/
ValueObjectMemory.cpp 40 lldb::TypeSP &type_sp)
42 return (new ValueObjectMemory (exe_scope, name, address, type_sp))->GetSP();
57 lldb::TypeSP &type_sp) :
60 m_type_sp(type_sp),
  /external/lldb/source/Target/
ObjCLanguageRuntime.cpp 132 TypeSP type_sp (types.GetTypeAtIndex(i));
134 if (type_sp->GetClangForwardType().IsObjCObjectOrInterfaceType())
136 if (type_sp->IsCompleteObjCClass())
138 m_complete_class_cache[name] = type_sp;
139 return type_sp;
  /external/lldb/include/lldb/Target/
ObjCLanguageRuntime.h 236 SetType (const lldb::TypeSP &type_sp)
238 m_type_wp = type_sp;
301 AddToClassNameCache (lldb::addr_t class_addr, const char *name, lldb::TypeSP type_sp);
  /external/lldb/source/API/
SBValue.cpp 473 TypeImplSP type_sp; local
476 type_sp.reset (new TypeImpl(value_sp->GetClangType()));
477 sb_type.SetSP(type_sp);
481 if (type_sp)
482 log->Printf ("SBValue(%p)::GetType => SBType(%p)", value_sp.get(), type_sp.get());
671 TypeImplSP type_sp (type.GetSP());
674 sb_value.SetSP(value_sp->GetSyntheticChildAtOffset(offset, type_sp->GetClangASTType(), true),GetPreferDynamicValue(),GetPreferSyntheticValue(), name);
697 TypeImplSP type_sp (type.GetSP());
698 if (value_sp && type_sp)
699 sb_value.SetSP(value_sp->Cast(type_sp->GetClangASTType()),GetPreferDynamicValue(),GetPreferSyntheticValue())
    [all...]
SBModule.cpp 545 TypeSP type_sp (type_list.GetTypeAtIndex(idx));
546 if (type_sp)
547 retval.Append(SBType(type_sp));
SBType.cpp 41 SBType::SBType (const lldb::TypeSP &type_sp) :
42 m_opaque_sp(new TypeImpl(type_sp))
SBTarget.cpp     [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV2.cpp 385 TypeSP type_sp (objc_class_sp->GetType());
386 if (type_sp)
387 class_type_or_name.SetTypeSP (type_sp);
390 type_sp = LookupInCompleteClassCache (class_name);
391 if (type_sp)
393 objc_class_sp->SetType (type_sp);
394 class_type_or_name.SetTypeSP (type_sp);
    [all...]
  /external/lldb/source/Commands/
CommandObjectTarget.cpp     [all...]
CommandObjectMemory.cpp 545 TypeSP type_sp (type_list.GetTypeAtIndex(0));
546 clang_ast_type = type_sp->GetClangFullType();
    [all...]

Completed in 205 milliseconds

1 2