Home
last modified time | relevance | path

Searched refs:GetMangledName (Results 1 – 25 of 38) sorted by relevance

12

/external/llvm-project/lldb/test/API/python_api/class_members/
DTestSBTypeClassMembers.py112 … self.assertEquals("_ZN7Derived5dImplEv", Derived.GetMemberFunctionAtIndex(0).GetMangledName())
113 self.assertEquals("_ZN7Derived3bazEf", Derived.GetMemberFunctionAtIndex(1).GetMangledName())
114 self.assertEquals("_ZN4Base3fooEii", Base.GetMemberFunctionAtIndex(0).GetMangledName())
115 self.assertEquals("_ZN4Base3barEic", Base.GetMemberFunctionAtIndex(1).GetMangledName())
116 self.assertEquals("_ZN4Base3datEv", Base.GetMemberFunctionAtIndex(2).GetMangledName())
117 self.assertEquals("_ZN4Base5sfuncEcif", Base.GetMemberFunctionAtIndex(3).GetMangledName())
/external/llvm-project/lldb/source/API/
DSBSymbol.cpp76 const char *SBSymbol::GetMangledName() const { in GetMangledName() function in SBSymbol
77 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBSymbol, GetMangledName); in GetMangledName()
81 name = m_opaque_ptr->GetMangled().GetMangledName().AsCString(); in GetMangledName()
218 LLDB_REGISTER_METHOD_CONST(const char *, SBSymbol, GetMangledName, ()); in RegisterMethods()
DSBFunction.cpp77 const char *SBFunction::GetMangledName() const { in GetMangledName() function in SBFunction
78 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBFunction, GetMangledName); in GetMangledName()
82 cstr = m_opaque_ptr->GetMangled().GetMangledName().AsCString(); in GetMangledName()
254 LLDB_REGISTER_METHOD_CONST(const char *, SBFunction, GetMangledName, ()); in RegisterMethods()
DSBType.cpp812 ConstString mangled_str = m_opaque_sp->GetMangledName(); in GetDemangledName()
821 const char *SBTypeMemberFunction::GetMangledName() { in GetMangledName() function in SBTypeMemberFunction
823 GetMangledName); in GetMangledName()
826 return m_opaque_sp->GetMangledName().GetCString(); in GetMangledName()
1006 LLDB_REGISTER_METHOD(const char *, SBTypeMemberFunction, GetMangledName, in RegisterMethods()
/external/llvm-project/lldb/bindings/interface/
DSBSymbol.i40 GetMangledName () const;
83 …mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (lin…
DSBFunction.i66 GetMangledName () const;
125 …mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (lin…
/external/llvm-project/lldb/include/lldb/Core/
DMangled.h151 ConstString &GetMangledName() { return m_mangled; } in GetMangledName() function
157 ConstString GetMangledName() const { return m_mangled; } in GetMangledName() function
/external/angle/src/compiler/translator/
DFunctionLookup.cpp74 return GetMangledName(mName.data(), mArguments); in getMangledName()
77 ImmutableString TFunctionLookup::GetMangledName(const char *functionName, in GetMangledName() function in sh::TFunctionLookup
DFunctionLookup.h29 static ImmutableString GetMangledName(const char *functionName,
/external/llvm-project/lldb/source/Core/
DMangled.cpp410 ConstString mangled = GetMangledName(); in GuessLanguage()
430 if (obj.GetMangledName()) in operator <<()
431 s << "mangled = '" << obj.GetMangledName() << "'"; in operator <<()
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_symbol.py10 obj.GetMangledName()
Dsb_function.py10 obj.GetMangledName()
/external/llvm-project/lldb/source/Symbol/
DCompilerDecl.cpp19 ConstString CompilerDecl::GetMangledName() const { in GetMangledName() function in CompilerDecl
DSymbol.cpp209 if (m_mangled.GetMangledName()) in GetDescription()
210 s->Printf(", mangled=\"%s\"", m_mangled.GetMangledName().AsCString()); in GetDescription()
335 return m_mangled.GetMangledName() == name || in Compare()
/external/llvm-project/lldb/include/lldb/Symbol/
DCompilerDecl.h72 ConstString GetMangledName() const;
/external/llvm-project/lldb/test/API/lang/cpp/global_variables/
DTestCPPGlobalVariables.py35 mangled = lldb.SBAddress(addr, target).GetSymbol().GetMangledName()
/external/llvm-project/lldb/include/lldb/API/
DSBSymbol.h37 const char *GetMangledName() const;
DSBFunction.h36 const char *GetMangledName() const;
DSBType.h77 const char *GetMangledName();
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDIE.h27 const char *GetMangledName() const;
DDWARFDIE.cpp203 const char *DWARFDIE::GetMangledName() const { in GetMangledName() function in DWARFDIE
205 return m_die->GetMangledName(m_cu); in GetMangledName()
DDWARFDebugInfoEntry.h94 const char *GetMangledName(const DWARFUnit *cu,
/external/llvm-project/lldb/test/API/python_api/name_lookup/
DTestNameLookup.py44 mangled = symbol.GetMangledName()
/external/llvm-project/lldb/examples/functions/
Dmain.cpp225 const char *func_mangled_name = function.GetMangledName(); in main()
/external/angle/src/tests/test_utils/
Dcompiler_test.cpp30 return TFunctionLookup::GetMangledName(node->getFunction()->name().data(), in GetSymbolTableMangledName()

12