Home
last modified time | relevance | path

Searched refs:GetAttributeValue (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugInfoEntry.cpp464 dw_offset_t DWARFDebugInfoEntry::GetAttributeValue( in GetAttributeValue() function in DWARFDebugInfoEntry
492 if (GetAttributeValue(cu, DW_AT_specification, form_value)) { in GetAttributeValue()
495 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue()
502 if (GetAttributeValue(cu, DW_AT_abstract_origin, form_value)) { in GetAttributeValue()
505 dw_offset_t die_offset = die.GetDIE()->GetAttributeValue( in GetAttributeValue()
525 if (GetAttributeValue(cu, attr, form_value, nullptr, in GetAttributeValueAsString()
538 if (GetAttributeValue(cu, attr, form_value, nullptr, in GetAttributeValueAsUnsigned()
552 if (GetAttributeValue(cu, attr, form_value, nullptr, in GetAttributeValueAsReference()
562 if (GetAttributeValue(cu, attr, form_value, nullptr, in GetAttributeValueAsAddress()
578 if (GetAttributeValue(cu, DW_AT_high_pc, form_value, nullptr, in GetAttributeHighPC()
[all …]
DDWARFDebugInfoEntry.h58 GetAttributeValue(const DWARFUnit *cu, const dw_attr_t attr,
DDWARFDIE.cpp135 if (m_die->GetAttributeValue(cu, attr, form_value, nullptr, in GetAttributeValueAsReferenceDIE()
/external/llvm-project/lldb/include/lldb/Host/
DXML.h79 llvm::StringRef GetAttributeValue(const char *name,
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DPythonDataObjects.cpp227 return GetAttributeValue(name); in ResolveName()
247 PythonObject PythonObject::GetAttributeValue(llvm::StringRef attr) const { in GetAttributeValue() function in PythonObject
913 PythonObject im_self = GetAttributeValue("im_self"); in GetArgInfo()
919 PythonObject __call__ = GetAttributeValue("__call__"); in GetArgInfo()
924 PythonObject im_self = __callable__.GetAttributeValue("im_self"); in GetArgInfo()
1123 PythonString py_mode = obj.GetAttributeValue("mode").AsType<PythonString>(); in GetOptionsForPyObject()
DPythonDataObjects.h306 PythonObject GetAttributeValue(llvm::StringRef attribute) const;
/external/llvm-project/lldb/source/Host/common/
DXML.cpp136 llvm::StringRef XMLNode::GetAttributeValue(const char *name, in GetAttributeValue() function in XMLNode
157 llvm::StringRef str_value = GetAttributeValue(name, ""); in GetAttributeValueAsUnsigned()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp4494 llvm::StringRef href = node.GetAttributeValue("href"); in GetGDBServerRegisterInfoXMLAndProcess()
4535 llvm::StringRef href = node.GetAttributeValue("href"); in GetGDBServerRegisterInfoXMLAndProcess()
4644 llvm::StringRef main_lm = root_element.GetAttributeValue("main-lm"); in GetLoadedModuleList()
4735 llvm::StringRef name = library.GetAttributeValue("name"); in GetLoadedModuleList()
4743 llvm::StringRef address = section.GetAttributeValue("address"); in GetLoadedModuleList()
DGDBRemoteCommunicationClient.cpp1666 auto type = memory_node.GetAttributeValue("type", ""); in LoadQXferMemoryMap()
1691 auto propname = prop_node.GetAttributeValue("name", ""); in LoadQXferMemoryMap()
/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonDataObjectsTests.cpp598 auto numerator_attr = As<long long>(py_int.GetAttributeValue("numerator")); in TEST_F()