Lines Matching refs:MatchStyle
342 StringRef Filename, MatchStyle MS, in addSymbolsFromFile()
365 NameOrPattern::create(StringRef Pattern, MatchStyle MS, in create()
368 case MatchStyle::Literal: in create()
370 case MatchStyle::Wildcard: { in create()
384 return create(Pattern, MatchStyle::Literal, ErrorCallback); in create()
390 case MatchStyle::Regex: { in create()
526 MatchStyle SectionMatchStyle = InputArgs.hasArg(OBJCOPY_regex) in parseObjcopyOptions()
527 ? MatchStyle::Regex in parseObjcopyOptions()
528 : MatchStyle::Wildcard; in parseObjcopyOptions()
529 MatchStyle SymbolMatchStyle = InputArgs.hasArg(OBJCOPY_regex) in parseObjcopyOptions()
530 ? MatchStyle::Regex in parseObjcopyOptions()
532 ? MatchStyle::Wildcard in parseObjcopyOptions()
533 : MatchStyle::Literal; in parseObjcopyOptions()
1084 MatchStyle SectionMatchStyle = in parseStripOptions()
1085 InputArgs.hasArg(STRIP_regex) ? MatchStyle::Regex : MatchStyle::Wildcard; in parseStripOptions()
1086 MatchStyle SymbolMatchStyle = InputArgs.hasArg(STRIP_regex) in parseStripOptions()
1087 ? MatchStyle::Regex in parseStripOptions()
1089 ? MatchStyle::Wildcard in parseStripOptions()
1090 : MatchStyle::Literal; in parseStripOptions()