Searched refs:GetMangledName (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBSymbol.i40 GetMangledName () const;
83 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this symbol as a string.''')
H A DSBFunction.i66 GetMangledName () const;
125 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this function as a string.''')
H A DSBType.i84 GetMangledName ();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerDecl.cpp19 ConstString CompilerDecl::GetMangledName() const { function in class:CompilerDecl
H A DSymbol.cpp209 if (m_mangled.GetMangledName())
210 s->Printf(", mangled=\"%s\"", m_mangled.GetMangledName().AsCString());
335 return m_mangled.GetMangledName() == name ||
H A DType.cpp1048 ConstString TypeMemberFunctionImpl::GetMangledName() const { function in class:TypeMemberFunctionImpl
1049 return m_decl.GetMangledName();
H A DFunction.cpp348 ConstString mangled = m_mangled.GetMangledName();
H A DSymtab.cpp282 if (ConstString name = mangled.GetMangledName()) {
433 if (ConstString name = mangled.GetMangledName())
H A DSymbolContext.cpp796 if (symbol->GetMangled().GetMangledName() != name)
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DMangled.h151 ConstString &GetMangledName() { return m_mangled; } function in class:lldb_private::Mangled
157 ConstString GetMangledName() const { return m_mangled; } function in class:lldb_private::Mangled
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFunction.h36 const char *GetMangledName() const;
H A DSBSymbol.h37 const char *GetMangledName() const;
H A DSBType.h77 const char *GetMangledName();
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBFunction.cpp79 const char *SBFunction::GetMangledName() const { function in class:SBFunction
80 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBFunction, GetMangledName);
84 cstr = m_opaque_ptr->GetMangled().GetMangledName().AsCString();
261 LLDB_REGISTER_METHOD_CONST(const char *, SBFunction, GetMangledName, ());
H A DSBSymbol.cpp78 const char *SBSymbol::GetMangledName() const { function in class:SBSymbol
79 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBSymbol, GetMangledName);
83 name = m_opaque_ptr->GetMangled().GetMangledName().AsCString();
225 LLDB_REGISTER_METHOD_CONST(const char *, SBSymbol, GetMangledName, ());
H A DSBType.cpp802 ConstString mangled_str = m_opaque_sp->GetMangledName();
811 const char *SBTypeMemberFunction::GetMangledName() { function in class:SBTypeMemberFunction
813 GetMangledName);
816 return m_opaque_sp->GetMangledName().GetCString();
995 LLDB_REGISTER_METHOD(const char *, SBTypeMemberFunction, GetMangledName,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.h27 const char *GetMangledName() const;
H A DDWARFDebugInfoEntry.h99 const char *GetMangledName(const DWARFUnit *cu,
H A DDWARFDIE.cpp164 const char *DWARFDIE::GetMangledName() const { function in class:DWARFDIE
166 return m_die->GetMangledName(m_cu);
H A DDWARFASTParserClang.cpp3559 const char *src_name = src_die.GetMangledName();
3578 const char *dst_name = dst_die.GetMangledName();
3626 const char *src_name = src_die.GetMangledName();
3627 const char *dst_name = dst_die.GetMangledName();
H A DDWARFDebugInfoEntry.cpp777 // GetMangledName
782 DWARFDebugInfoEntry::GetMangledName(const DWARFUnit *cu, function in class:DWARFDebugInfoEntry
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerDecl.h72 ConstString GetMangledName() const;
H A DType.h435 ConstString GetMangledName() const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DMangled.cpp414 ConstString mangled = GetMangledName();
436 if (obj.GetMangledName())
437 s << "mangled = '" << obj.GetMangledName() << "'";
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1775 const auto name = function->GetMangled().GetMangledName().AsCString();

Completed in 159 milliseconds

12