Searched refs:GetName (Results 1 - 25 of 207) sorted by relevance

123456789

/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBTypeNameSpecifier.i38 GetName();
60 name = property(GetName)
H A DSBMemoryRegionInfo.i47 GetName ();
H A DSBProcessInfo.i31 GetName ();
H A DSBSymbol.i34 GetName() const;
82 name = property(GetName, None, doc='''A read only property that returns the name for this symbol as a string.''')
H A DSBTypeEnumMember.i37 GetName ();
49 name = property(GetName, None, doc='''A read only property that returns the name for this enum member as a string.''')
H A DSBBroadcaster.i54 GetName () const;
H A DSBQueue.i42 GetName () const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBTypeNameSpecifier.cpp60 const char *SBTypeNameSpecifier::GetName() { function in class:SBTypeNameSpecifier
61 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBTypeNameSpecifier, GetName);
66 return m_opaque_sp->GetName();
97 description.Printf("SBTypeNameSpecifier(%s,%s)", GetName(),
132 if (GetName() == nullptr || rhs.GetName() == nullptr)
135 return (strcmp(GetName(), rhs.GetName()) == 0);
172 LLDB_REGISTER_METHOD(const char *, SBTypeNameSpecifier, GetName, ());
H A DSBTypeCategory.cpp74 const char *SBTypeCategory::GetName() { function in class:SBTypeCategory
75 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBTypeCategory, GetName);
79 return m_opaque_sp->GetName();
203 ConstString(spec.GetName()), children_sp);
206 ConstString(spec.GetName()), children_sp);
230 ConstString(spec.GetName()), format_sp);
233 ConstString(spec.GetName()), format_sp);
255 ConstString(spec.GetName()), summary_sp);
258 ConstString(spec.GetName()), summary_sp);
280 ConstString(spec.GetName()), children_s
[all...]
H A DSBFunction.cpp57 const char *SBFunction::GetName() const { function in class:SBFunction
58 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBFunction, GetName);
62 cstr = m_opaque_ptr->GetName().AsCString();
107 m_opaque_ptr->GetID(), m_opaque_ptr->GetName().AsCString());
110 s.Printf(", type = %s", func_type->GetName().AsCString());
193 return variable_sp->GetName().GetCString();
259 LLDB_REGISTER_METHOD_CONST(const char *, SBFunction, GetName, ());
H A DSBMemoryRegionInfo.cpp113 const char *SBMemoryRegionInfo::GetName() { function in class:SBMemoryRegionInfo
114 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBMemoryRegionInfo, GetName);
116 return m_opaque_up->GetName().AsCString();
160 LLDB_REGISTER_METHOD(const char *, SBMemoryRegionInfo, GetName, ());
H A DSBProcessInfo.cpp61 const char *SBProcessInfo::GetName() { function in class:SBProcessInfo
62 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBProcessInfo, GetName);
66 name = m_opaque_up->GetName();
194 LLDB_REGISTER_METHOD(const char *, SBProcessInfo, GetName, ());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.h24 llvm::StringRef GetName() const override { return "clang"; }
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectSyntheticFilter.cpp56 SetName(parent.GetName());
94 GetName().AsCString(), GetTypeName().AsCString(), num_children);
102 GetName().AsCString(), GetTypeName().AsCString(), num_children);
168 GetName().AsCString(), m_parent_type_name.AsCString(),
179 GetName().AsCString());
201 GetName().AsCString());
212 GetName().AsCString());
220 GetName().AsCString());
237 GetName().AsCString(), idx);
256 GetName()
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/
H A DExpressionSourceCode.h30 const char *GetName() const { return m_name.c_str(); } function in class:lldb_private::ExpressionSourceCode
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp77 m_persistent_variable_sp->GetName().GetCString(),
83 m_persistent_variable_sp->GetName().GetCString(), mem);
91 m_persistent_variable_sp->GetName(), mem, eAddressTypeLoad,
114 m_persistent_variable_sp->GetName().AsCString(),
133 m_persistent_variable_sp->GetName().GetCString(),
149 m_persistent_variable_sp->GetName().AsCString(),
178 m_persistent_variable_sp->GetName().AsCString(),
184 m_persistent_variable_sp->GetName().AsCString());
201 m_persistent_variable_sp->GetName().AsCString(),
228 m_persistent_variable_sp->GetName()
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.h33 using DWARFBaseDIE::GetName;
34 void GetName(lldb_private::Stream &s) const;
H A DUniqueDWARFASTType.cpp40 const char *parent_arg_die_name = parent_arg_die.GetName();
46 const char *parent_pos_die_name = parent_pos_die.GetName();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h55 virtual std::string GetName() { function in class:lldb_private::StackFrameRecognizer
78 std::string GetName() override {
137 SetName(parent.GetName());
H A DRegisterNumber.h47 const char *GetName();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBMemoryRegionInfo.h74 const char *GetName();
H A DSBProcessInfo.h29 const char *GetName();
H A DSBQueue.h41 const char *GetName() const;
H A DSBTypeNameSpecifier.h33 const char *GetName();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h26 virtual std::string GetName() = 0;

Completed in 170 milliseconds

123456789