Home
last modified time | relevance | path

Searched refs:array_info (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParser.cpp25 SymbolFile::ArrayInfo array_info; in ParseChildArrayInfo() local
70 array_info.bit_stride = form_value.Unsigned(); in ParseChildArrayInfo()
74 array_info.byte_stride = form_value.Unsigned(); in ParseChildArrayInfo()
97 array_info.element_orders.push_back(num_elements); in ParseChildArrayInfo()
100 return array_info; in ParseChildArrayInfo()
H A DDWARFASTParserClang.cpp1306 std::optional<SymbolFile::ArrayInfo> array_info = ParseChildArrayInfo(die); in ParseArrayType() local
1309 if (array_info) { in ParseArrayType()
1310 byte_stride = array_info->byte_stride; in ParseArrayType()
1311 bit_stride = array_info->bit_stride; in ParseArrayType()
1320 if (array_info && array_info->element_orders.size() > 0) { in ParseArrayType()
1322 auto end = array_info->element_orders.rend(); in ParseArrayType()
1323 for (auto pos = array_info->element_orders.rbegin(); pos != end; ++pos) { in ParseArrayType()
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp5494 if (auto array_info = in GetNumChildren() local
5497 num_children = array_info->element_orders.size() in GetNumChildren()
5498 ? array_info->element_orders.back() in GetNumChildren()