HomeSort by: relevance | last modified time | path
    Searched defs:Streams (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Minidump.h 35 /// Returns the list of streams (stream directory entries) in this file.
36 ArrayRef<minidump::Directory> streams() const { return Streams; } function in class:llvm::object::MinidumpFile
165 ArrayRef<minidump::Directory> Streams,
167 : Binary(ID_Minidump, Source), Header(Header), Streams(Streams),
185 ArrayRef<minidump::Directory> Streams;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
MinidumpYAML.h 20 /// The base class for all minidump streams. The "Type" of the stream
22 /// specifies how are we going to treat it. For highly specialized streams (e.g.
45 /// Get the stream Kind used for representing streams of a given Type.
60 /// streams with a similar structure.
198 /// minidump header, and zero or more streams. To construct an Object from a
209 std::vector<std::unique_ptr<Stream>> Streams)
210 : Header(Header), Streams(std::move(Streams)) {}
215 /// The list of streams in this minidump object.
216 std::vector<std::unique_ptr<Stream>> Streams;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
MinidumpYAML.cpp 459 IO.mapRequired("Streams", O.Streams);
554 std::vector<std::unique_ptr<Stream>> Streams;
555 Streams.reserve(File.streams().size());
556 for (const Directory &StreamDesc : File.streams()) {
560 Streams.push_back(std::move(*ExpectedStream));
562 return Object(File.header(), std::move(Streams));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
ExplainOutputStyle.cpp 243 SmallVector<StreamInfo, 12> Streams;
244 discoverStreamPurposes(File.pdb(), Streams);
246 assert(Stream <= Streams.size());
247 const StreamInfo &S = Streams[Stream];

Completed in 17 milliseconds