reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-objcopy/CopyConfig.cpp
  265                    StringRef Filename, MatchStyle MS,
  288 NameOrPattern::create(StringRef Pattern, MatchStyle MS,
  291   case MatchStyle::Literal:
  293   case MatchStyle::Wildcard: {
  307       return create(Pattern, MatchStyle::Literal, ErrorCallback);
  313   case MatchStyle::Regex: {
  424   MatchStyle SectionMatchStyle = InputArgs.hasArg(OBJCOPY_regex)
  425                                      ? MatchStyle::Regex
  426                                      : MatchStyle::Wildcard;
  427   MatchStyle SymbolMatchStyle = InputArgs.hasArg(OBJCOPY_regex)
  428                                     ? MatchStyle::Regex
  430                                           ? MatchStyle::Wildcard
  431                                           : MatchStyle::Literal;
  802   MatchStyle SectionMatchStyle =
  803       InputArgs.hasArg(STRIP_regex) ? MatchStyle::Regex : MatchStyle::Wildcard;
  803       InputArgs.hasArg(STRIP_regex) ? MatchStyle::Regex : MatchStyle::Wildcard;
  804   MatchStyle SymbolMatchStyle = InputArgs.hasArg(STRIP_regex)
  805                                     ? MatchStyle::Regex
  807                                           ? MatchStyle::Wildcard
  808                                           : MatchStyle::Literal;
tools/llvm-objcopy/CopyConfig.h
  114   create(StringRef Pattern, MatchStyle MS,