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

References

include/llvm/Support/BinaryStreamArray.h
  159       : IterRef(Array.Stream.drop_front(Offset)), Extract(E),
  206       IterRef = IterRef.drop_front(ThisLen);
include/llvm/Support/BinaryStreamRef.h
  107     return drop_front(getLength() - N);
  113     return drop_front(N).drop_back(N);
  119     return drop_front(Offset).keep_front(Len);
lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
  220   NamesBuffer = WritableBinaryStreamRef(FileInfoBuffer).drop_front(NamesOffset);
lib/Support/BinaryStreamReader.cpp
  172   BinaryStreamRef First = Stream.drop_front(Offset);
  174   BinaryStreamRef Second = First.drop_front(Off);
lib/Support/BinaryStreamWriter.cpp
   86   WritableBinaryStreamRef First = Stream.drop_front(Offset);
   88   WritableBinaryStreamRef Second = First.drop_front(Off);
tools/lld/COFF/PDB.cpp
  390         types.getUnderlyingStream().drop_front(firstType->RecordData.size()));
tools/llvm-pdbutil/LinePrinter.cpp
  206   Substream.StreamData = Slice.drop_front(Offset).keep_front(Size);
unittests/Support/BinaryStreamTest.cpp
  241     Ref = Ref.drop_front(1);
  257     Ref = Ref.drop_front(1);
  295   BinaryStreamRef Dropped = ConstRef.drop_front(1);
  330   auto Dropped = Original.drop_front(2);