Searched refs:FileFormat (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DCopyConfig.h31 enum class FileFormat { class in namespace:llvm::objcopy
153 FileFormat InputFormat = FileFormat::Unspecified;
155 FileFormat OutputFormat = FileFormat::Unspecified;
H A Dllvm-objcopy.cpp148 case FileFormat::ELF:
152 case FileFormat::Binary:
153 case FileFormat::IHex:
154 case FileFormat::Unspecified:
268 case FileFormat::Binary:
271 case FileFormat::IHex:
H A DCopyConfig.cpp238 FileFormat Format;
290 FileFormat Format;
292 Format = FileFormat::ELF;
482 Config.InputFormat = StringSwitch<FileFormat>(InputFormat)
483 .Case("binary", FileFormat::Binary)
484 .Case("ihex", FileFormat::IHex)
485 .Default(FileFormat::Unspecified);
491 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat)
492 .Case("binary", FileFormat::Binary)
493 .Case("ihex", FileFormat
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp158 case FileFormat::Binary:
160 case FileFormat::IHex:

Completed in 81 milliseconds