HomeSort by: relevance | last modified time | path
    Searched defs:Stream (Results 1 - 25 of 59) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DiagnosticPrinter.h 63 raw_ostream &Stream;
66 DiagnosticPrinterRawOStream(raw_ostream &Stream) : Stream(Stream) {}
  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
BitcodeWriter.h 34 std::unique_ptr<BitstreamWriter> Stream;
108 /// Write the specified module to the specified raw output stream.
110 /// For streams where it matters, the given stream should be in "binary"
136 /// file) to the given raw output stream, where it will be written in a new
146 /// Write the specified module summary index to the given raw output stream,
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeEnumInjectedSources.h 36 const InjectedSourceStream &Stream;
SymbolStream.h 1 //===- SymbolStream.cpp - PDB Symbol Stream Access --------------*- C++ -*-===//
25 SymbolStream(std::unique_ptr<msf::MappedBlockStream> Stream);
42 std::unique_ptr<msf::MappedBlockStream> Stream;
InfoStream.h 1 //===- InfoStream.h - PDB Info Stream (Stream 1) Access ---------*- C++ -*-===//
32 InfoStream(std::unique_ptr<BinaryStream> Stream);
58 std::unique_ptr<BinaryStream> Stream;
InjectedSourceStream.h 1 //===- InjectedSourceStream.h - PDB Headerblock Stream Access ---*- C++ -*-===//
25 InjectedSourceStream(std::unique_ptr<msf::MappedBlockStream> Stream);
35 std::unique_ptr<msf::MappedBlockStream> Stream;
PublicsStream.h 1 //===- PublicsStream.h - PDB Public Symbol Stream -------- ------*- C++ -*-===//
29 PublicsStream(std::unique_ptr<msf::MappedBlockStream> Stream);
48 std::unique_ptr<msf::MappedBlockStream> Stream;
ModuleDebugStream.h 1 //===- ModuleDebugStream.h - PDB Module Info Stream Access ------*- C++ -*-===//
33 std::unique_ptr<msf::MappedBlockStream> Stream);
77 std::shared_ptr<msf::MappedBlockStream> Stream;
TpiStream.h 1 //===- TpiStream.cpp - PDB Type Info (TPI) Stream 2 Access ------*- C++ -*-===//
37 TpiStream(PDBFile &File, std::unique_ptr<msf::MappedBlockStream> Stream);
77 std::unique_ptr<msf::MappedBlockStream> Stream;
DbiStream.h 1 //===- DbiStream.h - PDB Dbi Stream (Stream 3) Access -----------*- C++ -*-===//
41 explicit DbiStream(std::unique_ptr<BinaryStream> Stream);
75 /// If the given stream type is present, returns its stream index. If it is
103 std::unique_ptr<BinaryStream> Stream;
GlobalsStream.h 49 /// into the PDB symbol stream.
72 explicit GlobalsStream(std::unique_ptr<msf::MappedBlockStream> Stream);
82 std::unique_ptr<msf::MappedBlockStream> Stream;
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TestModuleFileExtension.h 34 llvm::BitstreamWriter &Stream) override;
38 llvm::BitstreamCursor Stream;
66 const llvm::BitstreamCursor &Stream) override;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugStringTableSubsection.h 44 bool valid() const { return Stream.valid(); }
46 BinaryStreamRef getBuffer() const { return Stream; }
49 BinaryStreamRef Stream;
SymbolDeserializer.h 27 : Stream(RecordData, llvm::support::little), Reader(Stream),
30 BinaryByteStream Stream;
SymbolSerializer.h 33 MutableBinaryByteStream Stream;
TypeDeserializer.h 31 : Stream(RecordData, llvm::support::little), Reader(Stream),
34 BinaryByteStream Stream;
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
YAMLRemarkParser.h 35 YAMLParseError(StringRef Message, SourceMgr &SM, yaml::Stream &Stream,
58 /// Stream for yaml parsing.
59 yaml::Stream Stream;
60 /// Iterator in the YAML stream.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
BinaryStreamWriter.h 35 explicit BinaryStreamWriter(WritableBinaryStream &Stream);
40 : Stream(Other.Stream), Offset(Other.Offset) {}
43 Stream = Other.Stream;
50 /// Write the bytes specified in \p Buffer to the underlying stream.
58 /// Write the integer \p Value to the underlying stream in the
69 Buffer, Value, Stream.getEndian());
82 /// Write the unsigned integer Value to the underlying stream using ULEB128
89 /// Write the unsigned integer Value to the underlying stream using ULEB12
    [all...]
BinaryStreamReader.h 1 //===- BinaryStreamReader.h - Reads objects from a binary stream *- C++ -*-===//
35 explicit BinaryStreamReader(BinaryStream &Stream);
41 : Stream(Other.Stream), Offset(Other.Offset) {}
44 Stream = Other.Stream;
53 /// Updates the stream's offset to point after the newly read data.
59 /// Read \p Size bytes from the underlying stream at the current offset and
61 /// depends on the implementation of the underlying stream. Updates the
62 /// stream's offset to point after the newly read data
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
Minidump.cpp 58 Optional<ArrayRef<uint8_t>> Stream = getRawStream(StreamType::MemoryInfoList);
59 if (!Stream)
60 return createError("No such stream");
62 getDataSliceAs<minidump::MemoryInfoListHeader>(*Stream, 0, 1);
67 getDataSlice(*Stream, H.SizeOfHeader, H.SizeOfEntry * H.NumberOfEntries);
76 Optional<ArrayRef<uint8_t>> Stream = getRawStream(Type);
77 if (!Stream)
78 return createError("No such stream");
79 auto ExpectedSize = getDataSliceAs<support::ulittle32_t>(*Stream, 0, 1);
88 // stream size
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TextAPI/
InterfaceFile.cpp 88 std::stringstream Stream;
91 Stream << '-';
92 Stream << std::setfill('0') << std::setw(2) << std::uppercase << std::hex
95 addUUID(Target, Stream.str());
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
FormatUtil.h 126 void format(llvm::raw_ostream &Stream, StringRef Style) override {
127 format_provider<T>::format(static_cast<T>(this->Item), Stream, Style);
MinimalTypeDumper.h 32 pdb::TpiStream *Stream)
35 HashValues(HashValues), Stream(Stream) {}
65 pdb::TpiStream *Stream = nullptr;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Remarks/
BitstreamRemarkParser.h 31 BitstreamCursor &Stream;
42 /// Continue parsing with \p Stream. \p Stream is expected to contain a
44 /// \p Stream is expected to have a BLOCKINFO_BLOCK set.
45 BitstreamMetaParserHelper(BitstreamCursor &Stream,
56 BitstreamCursor &Stream;
77 /// Continue parsing with \p Stream. \p Stream is expected to contain a
79 /// \p Stream is expected to have a BLOCKINFO_BLOCK set and to have already
81 BitstreamRemarkParserHelper(BitstreamCursor &Stream);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
CVTypeVisitor.cpp 86 Error visitFieldListMemberStream(BinaryStreamReader &Stream);
187 : Stream(Data, llvm::support::little), Reader(Stream),
196 BinaryByteStream Stream;

Completed in 36 milliseconds

1 2 3