|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h 39 Iterator begin() const { return References.begin(); }
include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h 31 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); }
include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h 36 ArrayType::Iterator begin() const { return RVAs.begin(); }
include/llvm/DebugInfo/PDB/Native/GlobalsStream.h 66 GSIHashIterator begin() const { return GSIHashIterator(HashRecords.begin()); }
include/llvm/Support/BinaryStreamArray.h 305 const T &front() const { return *begin(); }
lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp 175 auto Next = std::upper_bound(PartialOffsets.begin(), PartialOffsets.end(), TI,
180 assert(Next != PartialOffsets.begin());
lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp 476 Indices.append(Run.begin(), Run.end());
lib/DebugInfo/PDB/Native/DbiModuleList.cpp 209 for (auto Count : ModFileCountArray)
lib/DebugInfo/PDB/Native/DbiStream.cpp 227 for (auto &SC : SectionContribs)
231 for (auto &SC : SectionContribs2)
lib/DebugInfo/PDB/Native/GlobalsStream.cpp 159 for (uint32_t B : HashBitmap)
lib/ObjectYAML/CodeViewYAMLDebugSections.cpp 596 for (const auto &C : L.Columns) {
603 for (const auto &LN : L.LineNumbers) {
634 for (const auto EF : IL.ExtraFiles) {
665 YCMI.ImportIds.assign(CMI.Imports.begin(), CMI.Imports.end());
tools/lld/COFF/PDB.cpp 1097 for (uint32_t extraFileId : line.ExtraFiles) {
1210 for (const object::FpoData &fd : fpoRecords)
1809 for (const LineNumberEntry &ln : entry.LineNumbers) {
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp 413 addr_map.begin(), addr_map.end(), addr,
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp 1119 for (const LineNumberEntry &entry : group.LineNumbers) {
tools/llvm-pdbutil/DumpOutputStyle.cpp 918 auto LineIter = E.LineNumbers.begin();
1000 for (const auto &ExtraFileID : Entry.ExtraFiles) {
1041 for (const auto I : Xmi.Imports)
1104 for (const object::FpoData &FD : Records) {
1182 std::max_element(IS->name_ids().begin(), IS->name_ids().end());
1188 std::vector<uint32_t> SortedIDs(IS->name_ids().begin(),
1503 for (const auto &IO : IndexOffsets) {
1762 for (uint32_t Addr : Publics.getAddressMap())
1770 for (uint32_t Addr : Publics.getThunkMap())
1779 for (const SectionOffset &SO : Publics.getSectionOffsets())
1829 for (const PSHashRecord &HR : Table.HashRecords)
1837 for (uint32_t Hash : Table.HashBuckets)
1982 for (auto &M : Dbi.getSectionMap()) {
tools/llvm-pdbutil/YAMLOutputStyle.cpp 116 for (auto ID : ST.name_ids()) {
tools/llvm-readobj/COFFDumper.cpp 1131 for (const auto &Line : Entry.LineNumbers) {
1219 for (const auto &FID : Line.ExtraFiles) {
unittests/Support/BinaryStreamTest.cpp 426 auto Iter = Array.begin();
448 auto Iter = Array.begin();
584 ASSERT_EQ(Ints, std::vector<int>(FixedIntsRef.begin(), FixedIntsRef.end()));
usr/include/c++/7.4.0/bits/range_access.h 48 begin(_Container& __cont) -> decltype(__cont.begin())
49 { return __cont.begin(); }
58 begin(const _Container& __cont) -> decltype(__cont.begin())