Home
last modified time | relevance | path

Searched refs:MatchStyle (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/
H A DCommonConfig.cpp16 NameOrPattern::create(StringRef Pattern, MatchStyle MS, in create()
19 case MatchStyle::Literal: in create()
21 case MatchStyle::Wildcard: { in create()
31 return create(Pattern, MatchStyle::Literal, ErrorCallback); in create()
37 case MatchStyle::Regex: { in create()
49 llvm_unreachable("Unhandled llvm.objcopy.MatchStyle enum");
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp349 StringRef Filename, MatchStyle MS, in addSymbolsFromFile()
663 MatchStyle SectionMatchStyle = InputArgs.hasArg(OBJCOPY_regex) in parseObjcopyOptions()
664 ? MatchStyle::Regex in parseObjcopyOptions()
665 : MatchStyle::Wildcard; in parseObjcopyOptions()
666 MatchStyle SymbolMatchStyle in parseObjcopyOptions()
667 = InputArgs.hasArg(OBJCOPY_regex) ? MatchStyle::Regex in parseObjcopyOptions()
668 : InputArgs.hasArg(OBJCOPY_wildcard) ? MatchStyle::Wildcard in parseObjcopyOptions()
669 : MatchStyle::Literal; in parseObjcopyOptions()
1366 "__LLVM,__asm", MatchStyle::Literal, ErrorCallback))); in parseBitcodeStripOptions()
1368 "__LLVM,__bitcode", MatchStyle::Literal, ErrorCallback))); in parseBitcodeStripOptions()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h86 enum class MatchStyle { enum
108 create(StringRef Pattern, MatchStyle MS,