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

Overridden By

include/llvm/Support/BinaryByteStream.h
   57   uint32_t getLength() override { return Data.size(); }
  110   uint32_t getLength() override { return ImmutableStream.getLength(); }
  170   uint32_t getLength() override { return Data.size(); }
  253   uint32_t getLength() override { return Impl.getLength(); }
include/llvm/Support/BinaryItemStream.h
   69   uint32_t getLength() override {
lib/DebugInfo/MSF/MappedBlockStream.cpp
  196 uint32_t MappedBlockStream::getLength() { return StreamLayout.Length; }
  383 uint32_t WritableMappedBlockStream::getLength() {
lib/Support/BinaryStreamRef.cpp
   32   uint32_t getLength() override { return BBS.getLength(); }
   55   uint32_t getLength() override { return BBS.getLength(); }
unittests/DebugInfo/MSF/MappedBlockStreamTest.cpp
   55   uint32_t getLength() override { return Data.size(); }
unittests/Support/BinaryStreamTest.cpp
   62   uint32_t getLength() override { return Data.size(); }

References

include/llvm/Support/BinaryStream.h
   60     if (Offset > getLength())
   62     if (getLength() < DataSize + Offset)
   93     if (Offset > getLength())
include/llvm/Support/BinaryStreamRef.h
   30       Length = BorrowedImpl.getLength();
   55     return BorrowedImpl ? (BorrowedImpl->getLength() - ViewOffset) : 0;
lib/DebugInfo/PDB/Native/DbiStream.cpp
   55   if (Stream->getLength() < sizeof(DbiStreamHeader))
   73   if (Stream->getLength() !=
lib/DebugInfo/PDB/Native/InfoStream.cpp
   86 uint32_t InfoStream::getStreamSize() const { return Stream->getLength(); }
lib/DebugInfo/PDB/Native/NativeEnumInjectedSources.cpp
   21   uint32_t Offset = 0, DataLength = std::min(Limit, Stream.getLength());
lib/DebugInfo/PDB/Native/PDBFile.cpp
  102 uint32_t PDBFile::getFileSize() const { return Buffer->getLength(); }
  134   if (Buffer->getLength() % SB->BlockSize != 0)
unittests/Support/BinaryStreamTest.cpp
  204     ASSERT_EQ(InputData.size(), Stream.Input->getLength());
  364     ASSERT_EQ(InputData.size(), Stream.Input->getLength());
  370       uint32_t ExpectedSize = Stream.Input->getLength() - Offset;
  423     ASSERT_EQ(InputData.size(), Stream.Input->getLength());
  445     ASSERT_EQ(InputData.size(), Stream.Input->getLength());