Lines Matching refs:MatchStyle
346 StringRef Filename, MatchStyle MS, in addSymbolsFromFile()
369 NameOrPattern::create(StringRef Pattern, MatchStyle MS, in create()
372 case MatchStyle::Literal: in create()
374 case MatchStyle::Wildcard: { in create()
388 return create(Pattern, MatchStyle::Literal, ErrorCallback); in create()
394 case MatchStyle::Regex: { in create()
700 MatchStyle SectionMatchStyle = InputArgs.hasArg(OBJCOPY_regex) in parseObjcopyOptions()
701 ? MatchStyle::Regex in parseObjcopyOptions()
702 : MatchStyle::Wildcard; in parseObjcopyOptions()
703 MatchStyle SymbolMatchStyle = InputArgs.hasArg(OBJCOPY_regex) in parseObjcopyOptions()
704 ? MatchStyle::Regex in parseObjcopyOptions()
706 ? MatchStyle::Wildcard in parseObjcopyOptions()
707 : MatchStyle::Literal; in parseObjcopyOptions()
1288 MatchStyle SectionMatchStyle = in parseStripOptions()
1289 InputArgs.hasArg(STRIP_regex) ? MatchStyle::Regex : MatchStyle::Wildcard; in parseStripOptions()
1290 MatchStyle SymbolMatchStyle = InputArgs.hasArg(STRIP_regex) in parseStripOptions()
1291 ? MatchStyle::Regex in parseStripOptions()
1293 ? MatchStyle::Wildcard in parseStripOptions()
1294 : MatchStyle::Literal; in parseStripOptions()