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

References

lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp
   26   return Reader.readArray(References, Size);
lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
   39   if (auto EC = Reader.readArray(Item.Imports, Item.Header->Count))
lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
   26   if (auto EC = Reader.readArray(Frames, Count))
lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
   34     if (auto EC = Reader.readArray(Item.ExtraFiles, ExtraFileCount))
lib/DebugInfo/CodeView/DebugLinesSubsection.cpp
   44   if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines))
   47     if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines))
lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
   23   return Reader.readArray(RVAs, Reader.bytesRemaining() / sizeof(uint32_t));
lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp
  475     cantFail(Reader.readArray(Run, Ref.Count));
lib/DebugInfo/PDB/Native/DbiModuleList.cpp
  199   if (auto EC = FISR.readArray(ModuleIndices, FileInfoHeader->NumModules))
  201   if (auto EC = FISR.readArray(ModFileCountArray, FileInfoHeader->NumModules))
  216   if (auto EC = FISR.readArray(FileNameOffsets, NumSourceFiles))
lib/DebugInfo/PDB/Native/DbiStream.cpp
   42   if (auto EC = Reader.readArray(Output, Count))
  115   if (auto EC = Reader.readArray(
  275   if (auto EC = Reader.readArray(SectionHeaders, NumSections))
  301   if (auto EC = Reader.readArray(OldFpoRecords, NumRecords))
  373   if (auto EC = SMReader.readArray(SectionMap, Header->SecCount))
lib/DebugInfo/PDB/Native/GlobalsStream.cpp
  119   if (auto EC = Reader.readArray(HashRecords, NumHashRecords))
  140   if (auto EC = Reader.readArray(HashBitmap, NumBitmapEntries))
  163   if (auto EC = Reader.readArray(HashBuckets, NumBuckets))
lib/DebugInfo/PDB/Native/PDBStringTable.cpp
   67   if (auto EC = Reader.readArray(IDs, *HashCount)) {
lib/DebugInfo/PDB/Native/PublicsStream.cpp
   78   if (auto EC = Reader.readArray(AddressMap, NumAddressMapEntries))
   84   if (auto EC = Reader.readArray(ThunkMap, Header->NumThunks))
   91     if (auto EC = Reader.readArray(SectionOffsets, Header->NumSections))
lib/DebugInfo/PDB/Native/TpiStream.cpp
   97     if (auto EC = HSR.readArray(HashValues, NumHashValues))
  103     if (auto EC = HSR.readArray(TypeIndexOffsets, NumTypeIndexOffsets))
tools/lld/COFF/PDB.cpp
 1206       exitOnErr(reader.readArray(fpoRecords, count));
unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp
  192     consumeError(Reader.readArray(Result, Count));
  392   ASSERT_THAT_ERROR(Reader.readArray(PartialOffsets, 2), Succeeded());
unittests/Support/BinaryStreamTest.cpp
  582     ASSERT_THAT_ERROR(Reader.readArray(FixedIntsRef, Ints.size()), Succeeded());