reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h
   66   Iterator begin() const { return Checksums.begin(); }
include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h
   62   Iterator begin() const { return References.begin(); }
include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h
   80   Iterator begin() const { return Lines.begin(); }
include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h
   93   Iterator begin() const { return LinesAndColumns.begin(); }
include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
   29   CVSymbolArray::Iterator begin() const { return Records.begin(); }
include/llvm/DebugInfo/CodeView/StringsAndChecksums.h
   41     for (const DebugSubsectionRecord &R : FragmentRange) {
include/llvm/DebugInfo/CodeView/TypeHashing.h
  113     for (const auto &R : Records) {
  128       for (const auto &R : Records) {
  149     for (const auto &R : Records)
include/llvm/Support/BinaryStreamArray.h
  141   void drop_front() { Skew += begin()->length(); }
lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
   67   for (auto I : Symbols) {
   76   for (auto I : Symbols) {
lib/DebugInfo/CodeView/CVTypeVisitor.cpp
  143   for (auto I : Types) {
lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
  230   auto Begin = Types.begin();
lib/DebugInfo/PDB/Native/DbiModuleList.cpp
  222   auto DescriptorIter = Descriptors.begin();
lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp
  112   return make_range(SymbolArray.begin(HadError), SymbolArray.end());
  123   return make_range(Subsections.begin(), Subsections.end());
lib/DebugInfo/PDB/Native/SymbolStream.cpp
   38   return llvm::make_range(SymbolRecords.begin(HadError), SymbolRecords.end());
lib/DebugInfo/PDB/Native/TpiStream.cpp
  243   return make_range(TypeRecords.begin(HadError), TypeRecords.end());
lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
  915   for (const auto &SS : Subsections) {
lib/ObjectYAML/CodeViewYAMLTypes.cpp
  789   for (const auto &T : Types) {
tools/lld/COFF/InputFiles.cpp
  707   for (const DebugSubsectionRecord &ss : subsections) {
  764   CVTypeArray::Iterator firstType = types.begin();
tools/lld/COFF/PDB.cpp
  388     CVTypeArray::Iterator firstType = types.begin();
  995   for (const DebugSubsectionRecord &ss : subsections) {
 1742     for (const DebugSubsectionRecord &ss : subsections) {
tools/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp
   90   for (const CVSymbol &sym : syms) {
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
   52   auto begin = syms.begin();
 1039   auto begin = scope.begin();
 1180   for (const CVType &cvt : m_index.tpi().typeArray()) {
 1217     auto iter = symbols.begin();
 1257     CVSymbol sym = *result.begin();
 1283   auto begin = symbols.begin();
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbIndex.cpp
  126   for (auto iter = syms.begin(); iter != syms.end(); ++iter) {
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
  933   for (auto iter = syms.begin(); iter != syms.end(); ++iter) {
 1075   for (const DebugSubsectionRecord &dssr :
 1438   auto iter = syms.begin();
tools/llvm-pdbutil/DumpOutputStyle.cpp
  284   for (const auto &SS : SG.getDebugSubsections()) {
  303   for (const auto &Chunk : SG.getDebugSubsections()) {
  485                         for (const auto &SS : SG.getDebugSubsections()) {
  835       for (const auto &SS : Sec.getDebugSubsections()) {
tools/llvm-pdbutil/ExplainOutputStyle.cpp
  364   auto Prev = ModuleDescriptors.begin();
tools/llvm-pdbutil/TypeReferenceTracker.cpp
   57       for (const auto &SS : SG.getDebugSubsections()) {
   66         for (const CVSymbol &S : Symbols)
   70       for (const CVSymbol &S : SG.getPdbModuleStream().getSymbolArray())
unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp
  379   auto ItemOneIter = TypeStream.begin();
unittests/Support/BinaryStreamTest.cpp
  492     auto Iter = Array.begin();