Searched defs:ModuleSubstream (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/DebugInfo/CodeView/
H A DModuleSubstream.cpp1 //===- ModuleSubstream.cpp --------------------------------------*- C++ -*-===//
10 #include "llvm/DebugInfo/CodeView/ModuleSubstream.h"
17 ModuleSubstream::ModuleSubstream() : Kind(ModuleSubstreamKind::None) {} function in class:ModuleSubstream
19 ModuleSubstream::ModuleSubstream(ModuleSubstreamKind Kind, StreamRef Data) function in class:ModuleSubstream
22 Error ModuleSubstream::initialize(StreamRef Stream, ModuleSubstream &Info) {
36 uint32_t ModuleSubstream::getRecordLength() const {
40 ModuleSubstreamKind ModuleSubstream
[all...]
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DModuleSubstream.h1 //===- ModuleSubstream.h ----------------------------------------*- C++ -*-===//
59 class ModuleSubstream { class in namespace:llvm::codeview
61 ModuleSubstream();
62 ModuleSubstream(ModuleSubstreamKind Kind, StreamRef Data);
63 static Error initialize(StreamRef Stream, ModuleSubstream &Info);
73 template <> struct VarStreamArrayExtractor<ModuleSubstream> {
75 ModuleSubstream &Info) const {
76 if (auto EC = ModuleSubstream::initialize(Stream, Info))
83 typedef VarStreamArray<ModuleSubstream> ModuleSubstreamArray;

Completed in 218 milliseconds