Home
last modified time | relevance | path

Searched refs:LVBinaryType (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVReader.h61 LVBinaryType BinaryType;
173 LVBinaryType BinaryType = LVBinaryType::NONE)
242 bool isBinaryTypeNone() const { return BinaryType == LVBinaryType::NONE; } in isBinaryTypeNone()
243 bool isBinaryTypeELF() const { return BinaryType == LVBinaryType::ELF; } in isBinaryTypeELF()
244 bool isBinaryTypeCOFF() const { return BinaryType == LVBinaryType::COFF; } in isBinaryTypeCOFF()
H A DLVObject.h88 enum class LVBinaryType { NONE, ELF, COFF }; enum
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.h195 : LVBinaryReader(Filename, FileFormatName, W, LVBinaryType::COFF),
199 : LVBinaryReader(Filename, FileFormatName, W, LVBinaryType::COFF),
H A DLVDWARFReader.h133 : LVBinaryReader(Filename, FileFormatName, W, LVBinaryType::ELF), in LVDWARFReader()
H A DLVBinaryReader.h201 LVBinaryType BinaryType) in LVBinaryReader()