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

Derived Classes

include/llvm/Bitstream/BitstreamReader.h
  339 class BitstreamCursor : SimpleBitstreamCursor {

References

include/llvm/Bitstream/BitstreamReader.h
  339 class BitstreamCursor : SimpleBitstreamCursor {
lib/Bitcode/Reader/BitcodeAnalyzer.cpp
  409     if (Expected<SimpleBitstreamCursor::word_t> MaybeWord = Stream.Read(size))
  517   SimpleBitstreamCursor R(Lengths);
lib/Bitcode/Reader/BitcodeReader.cpp
  113     if (Expected<SimpleBitstreamCursor::word_t> Res = Stream.Read(8)) {
  120     if (Expected<SimpleBitstreamCursor::word_t> Res = Stream.Read(4)) {
lib/Bitcode/Reader/MetadataLoader.cpp
 1940   SimpleBitstreamCursor R(Lengths);
lib/Bitstream/Reader/BitstreamReader.cpp
  311           if (Expected<SimpleBitstreamCursor::word_t> MaybeVal =
  327           if (Expected<SimpleBitstreamCursor::word_t> MaybeVal = Read(6))
tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
   45     if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = Stream.Read(8)) {
tools/clang/lib/Serialization/ASTReader.cpp
 4406     if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = Stream.Read(8)) {
tools/clang/lib/Serialization/GlobalModuleIndex.cpp
  270     if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = Cursor.Read(8)) {
  543     if (Expected<llvm::SimpleBitstreamCursor::word_t> Res = InStream.Read(8)) {
tools/clang/tools/extra/clang-doc/BitcodeReader.cpp
  699     Expected<llvm::SimpleBitstreamCursor::word_t> MaybeRead = Stream.Read(8);
unittests/Bitstream/BitstreamReaderTest.cpp
   25   Expected<SimpleBitstreamCursor::word_t> MaybeRead = Cursor.Read(8);
   57   SimpleBitstreamCursor Cursor(Bytes);
   61     Expected<SimpleBitstreamCursor::word_t> MaybeRead = Cursor.Read(1);
   69   SimpleBitstreamCursor Cursor(Bytes);
   78   SimpleBitstreamCursor Cursor(Bytes);
  122     Expected<SimpleBitstreamCursor::word_t> MaybeRead = Stream.Read(32);
  157     SimpleBitstreamCursor Cursor(ArrayRef<uint8_t>(Bytes, I));
  158     Expected<SimpleBitstreamCursor::word_t> MaybeRead = Cursor.Read(8);