Home | History | Annotate | Download | only in CodeView

Lines Matching refs:ModuleSubstream

1 //===- ModuleSubstream.cpp --------------------------------------*- C++ -*-===//
10 #include "llvm/DebugInfo/CodeView/ModuleSubstream.h"
17 ModuleSubstream::ModuleSubstream() : Kind(ModuleSubstreamKind::None) {}
19 ModuleSubstream::ModuleSubstream(ModuleSubstreamKind Kind, StreamRef Data)
22 Error ModuleSubstream::initialize(StreamRef Stream, ModuleSubstream &Info) {
36 uint32_t ModuleSubstream::getRecordLength() const {
40 ModuleSubstreamKind ModuleSubstream::getSubstreamKind() const { return Kind; }
42 StreamRef ModuleSubstream::getRecordData() const { return Data; }