Home
last modified time | relevance | path

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

/freebsd-14.2/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()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp607 MatchStyle SectionMatchStyle = InputArgs.hasArg(OBJCOPY_regex) in parseObjcopyOptions()
608 ? MatchStyle::Regex in parseObjcopyOptions()
609 : MatchStyle::Wildcard; in parseObjcopyOptions()
610 MatchStyle SymbolMatchStyle in parseObjcopyOptions()
611 = InputArgs.hasArg(OBJCOPY_regex) ? MatchStyle::Regex in parseObjcopyOptions()
1210 "__LLVM,__asm", MatchStyle::Literal, ErrorCallback))); in parseBitcodeStripOptions()
1214 "__LLVM,__bundle", MatchStyle::Literal, ErrorCallback))); in parseBitcodeStripOptions()
1282 MatchStyle SectionMatchStyle = in parseStripOptions()
1283 InputArgs.hasArg(STRIP_regex) ? MatchStyle::Regex : MatchStyle::Wildcard; in parseStripOptions()
1284 MatchStyle SymbolMatchStyle in parseStripOptions()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h93 enum class MatchStyle { enum
115 create(StringRef Pattern, MatchStyle MS,