Searched refs:type_sp (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp147 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...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeCategory.cpp269 TypeCategoryImpl::GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp) argument
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) argument
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
302 GetSyntheticForType(lldb::TypeNameSpecifierImplSP type_sp) argument
[all...]
H A DDataVisualization.cpp109 DataVisualization::GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp) argument
111 return GetFormatManager().GetSummaryForType(type_sp);
125 DataVisualization::GetSyntheticChildrenForType (lldb::TypeNameSpecifierImplSP type_sp) argument
127 return GetFormatManager().GetSyntheticChildrenForType(type_sp);
132 DataVisualization::GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp) argument
134 return GetFormatManager().GetFilterForType(type_sp);
139 DataVisualization::GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp) argument
141 return GetFormatManager().GetSyntheticForType(type_sp);
H A DFormatManager.cpp167 FormatManager::GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp) argument
169 if (!type_sp)
182 lldb::TypeSummaryImplSP summary_current_sp = category_sp->GetSummaryForType(type_sp);
193 FormatManager::GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp) argument
195 if (!type_sp)
208 lldb::TypeFilterImplSP filter_current_sp((TypeFilterImpl*)category_sp->GetFilterForType(type_sp).get());
220 FormatManager::GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp) argument
222 if (!type_sp)
235 lldb::ScriptedSyntheticChildrenSP synth_current_sp((ScriptedSyntheticChildren*)category_sp->GetSyntheticForType(type_sp).get());
248 FormatManager::GetSyntheticChildrenForType (lldb::TypeNameSpecifierImplSP type_sp) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DTypeList.cpp54 TypeList::Insert (const TypeSP& type_sp) argument
57 if (type_sp)
58 m_types.insert(std::make_pair(type_sp->GetID(), type_sp));
63 TypeList::InsertUnique (const TypeSP& type_sp) argument
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)> cons
[all...]
H A DType.cpp367 lldb::TypeSP type_sp; local
372 type_sp = typedef_type->shared_from_this();
374 return type_sp;
878 TypeAndOrName::SetTypeSP (lldb::TypeSP type_sp) argument
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) argument
928 if (type_sp)
930 m_clang_ast_type = type_sp
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h75 GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp);
79 GetSyntheticChildrenForType (lldb::TypeNameSpecifierImplSP type_sp);
83 GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp);
87 GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp);
H A DFormatManager.h129 GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp);
132 GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp);
136 GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp);
141 GetSyntheticChildrenForType (lldb::TypeNameSpecifierImplSP type_sp);
H A DTypeCategory.h90 GetSummaryForType (lldb::TypeNameSpecifierImplSP type_sp);
93 GetFilterForType (lldb::TypeNameSpecifierImplSP type_sp);
97 GetSyntheticForType (lldb::TypeNameSpecifierImplSP type_sp);
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValueObjectMemory.h33 lldb::TypeSP &type_sp);
77 lldb::TypeSP &type_sp);
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DTypeList.h55 ForEach (std::function <bool(const lldb::TypeSP &type_sp)> const &callback) const;
58 ForEach (std::function <bool(lldb::TypeSP &type_sp)> const &callback);
H A DType.h319 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;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h43 UniqueDWARFASTType (lldb::TypeSP &type_sp, argument
49 m_type_sp (type_sp),
H A DSymbolFileDWARF.cpp4486 TypeSP type_sp; local
4496 type_sp = ParseType(sc, dwarf_cu, die, NULL);
4501 type_sp = type_ptr->shared_from_this();
4505 return type_sp;
4779 TypeSP type_sp; local
4782 return type_sp;
4851 type_sp = resolved_type->shared_from_this();
4868 return type_sp;
4984 TypeSP type_sp; local
4993 return type_sp;
5163 TypeSP type_sp; local
5614 TypeSP type_sp; local
[all...]
H A DSymbolFileDWARFDebugMap.cpp1180 TypeSP type_sp; local
1184 type_sp = oso_dwarf->FindDefinitionTypeForDWARFDeclContext (die_decl_ctx);
1185 if (type_sp)
1188 return type_sp;
1217 TypeSP type_sp; local
1221 type_sp = oso_dwarf->FindCompleteObjCDefinitionTypeForDIE (die, type_name, must_be_implementation);
1222 if (type_sp)
1225 return type_sp;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DValueObjectMemory.cpp40 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),
37 Create(ExecutionContextScope *exe_scope, const char *name, const Address &address, lldb::TypeSP &type_sp) argument
54 ValueObjectMemory(ExecutionContextScope *exe_scope, const char *name, const Address &address, lldb::TypeSP &type_sp) argument
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DObjCLanguageRuntime.cpp132 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;
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DObjCLanguageRuntime.h236 SetType (const lldb::TypeSP &type_sp) argument
238 m_type_wp = type_sp;
301 AddToClassNameCache (lldb::addr_t class_addr, const char *name, lldb::TypeSP type_sp);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBValue.cpp473 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
[all...]
H A DSBModule.cpp545 TypeSP type_sp (type_list.GetTypeAtIndex(idx));
546 if (type_sp)
547 retval.Append(SBType(type_sp));
H A DSBType.cpp41 SBType::SBType (const lldb::TypeSP &type_sp) : argument
42 m_opaque_sp(new TypeImpl(type_sp))
H A DSBTarget.cpp2124 TypeSP type_sp (module_sp->FindFirstType(sc, const_typename, exact_match));
2125 if (type_sp)
2126 return SBType(type_sp);
2198 TypeSP type_sp (type_list.GetTypeAtIndex(idx));
2199 if (type_sp)
2200 sb_type_list.Append(SBType(type_sp));
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectTarget.cpp1735 TypeSP type_sp (type_list.GetTypeAtIndex(i));
1736 if (type_sp)
1740 type_sp->GetClangFullType ();
1741 type_sp->GetDescription (&strm, eDescriptionLevelFull, true);
1743 TypeSP typedef_type_sp (type_sp);
1788 TypeSP type_sp (type_list.GetTypeAtIndex(0));
1789 if (type_sp)
1793 type_sp->GetClangFullType ();
1794 type_sp->GetDescription (&strm, eDescriptionLevelFull, true);
1796 TypeSP typedef_type_sp (type_sp);
[all...]
H A DCommandObjectMemory.cpp545 TypeSP type_sp (type_list.GetTypeAtIndex(0));
546 clang_ast_type = type_sp->GetClangFullType();
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangASTSource.cpp687 lldb::TypeSP type_sp = types.GetTypeAtIndex(0); local
691 const char *name_string = type_sp->GetName().GetCString();
699 ClangASTType full_type = type_sp->GetClangFullType();

Completed in 315 milliseconds

12