Lines Matching refs:MatchStyle
303 StringRef Filename, MatchStyle MS, in addSymbolsFromFile()
326 NameOrPattern::create(StringRef Pattern, MatchStyle MS, in create()
329 case MatchStyle::Literal: in create()
331 case MatchStyle::Wildcard: { in create()
345 return create(Pattern, MatchStyle::Literal, ErrorCallback); in create()
351 case MatchStyle::Regex: { in create()
462 MatchStyle SectionMatchStyle = InputArgs.hasArg(OBJCOPY_regex) in parseObjcopyOptions()
463 ? MatchStyle::Regex in parseObjcopyOptions()
464 : MatchStyle::Wildcard; in parseObjcopyOptions()
465 MatchStyle SymbolMatchStyle = InputArgs.hasArg(OBJCOPY_regex) in parseObjcopyOptions()
466 ? MatchStyle::Regex in parseObjcopyOptions()
468 ? MatchStyle::Wildcard in parseObjcopyOptions()
469 : MatchStyle::Literal; in parseObjcopyOptions()
891 MatchStyle SectionMatchStyle = in parseStripOptions()
892 InputArgs.hasArg(STRIP_regex) ? MatchStyle::Regex : MatchStyle::Wildcard; in parseStripOptions()
893 MatchStyle SymbolMatchStyle = InputArgs.hasArg(STRIP_regex) in parseStripOptions()
894 ? MatchStyle::Regex in parseStripOptions()
896 ? MatchStyle::Wildcard in parseStripOptions()
897 : MatchStyle::Literal; in parseStripOptions()