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()
30 return create(Pattern, MatchStyle::Literal, ErrorCallback); in create()
36 case MatchStyle::Regex: { in create()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp361 StringRef Filename, MatchStyle MS, in addSymbolsFromFile()
633 MatchStyle SectionMatchStyle, in parseChangeSectionAddr()
762 MatchStyle SectionMatchStyle = InputArgs.hasArg(OBJCOPY_regex) in parseObjcopyOptions()
763 ? MatchStyle::Regex in parseObjcopyOptions()
764 : MatchStyle::Wildcard; in parseObjcopyOptions()
765 MatchStyle SymbolMatchStyle in parseObjcopyOptions()
766 = InputArgs.hasArg(OBJCOPY_regex) ? MatchStyle::Regex in parseObjcopyOptions()
767 : InputArgs.hasArg(OBJCOPY_wildcard) ? MatchStyle::Wildcard in parseObjcopyOptions()
768 : MatchStyle::Literal; in parseObjcopyOptions()
1497 "__LLVM,__asm", MatchStyle::Literal, ErrorCallback))); in parseBitcodeStripOptions()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjCopy/
H A DCommonConfig.h87 enum class MatchStyle { enum
109 create(StringRef Pattern, MatchStyle MS,