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

References

tools/llvm-objcopy/CopyConfig.cpp
  766   if (InputArgs.size() == 0) {
  771   if (InputArgs.hasArg(STRIP_help)) {
  776   if (InputArgs.hasArg(STRIP_version)) {
  783   for (auto Arg : InputArgs.filtered(STRIP_UNKNOWN))
  785                              Arg->getAsString(InputArgs).c_str());
  786   for (auto Arg : InputArgs.filtered(STRIP_INPUT))
  792   if (Positional.size() > 1 && InputArgs.hasArg(STRIP_output))
  799   if (InputArgs.hasArg(STRIP_regex) && InputArgs.hasArg(STRIP_wildcard))
  799   if (InputArgs.hasArg(STRIP_regex) && InputArgs.hasArg(STRIP_wildcard))
  803       InputArgs.hasArg(STRIP_regex) ? MatchStyle::Regex : MatchStyle::Wildcard;
  804   MatchStyle SymbolMatchStyle = InputArgs.hasArg(STRIP_regex)
  806                                     : InputArgs.hasArg(STRIP_wildcard)
  809   Config.AllowBrokenLinks = InputArgs.hasArg(STRIP_allow_broken_links);
  810   Config.StripDebug = InputArgs.hasArg(STRIP_strip_debug);
  812   if (InputArgs.hasArg(STRIP_discard_all, STRIP_discard_locals))
  814         InputArgs.hasFlag(STRIP_discard_all, STRIP_discard_locals)
  817   Config.StripSections = InputArgs.hasArg(STRIP_strip_sections);
  818   Config.StripUnneeded = InputArgs.hasArg(STRIP_strip_unneeded);
  819   if (auto Arg = InputArgs.getLastArg(STRIP_strip_all, STRIP_no_strip_all))
  821   Config.StripAllGNU = InputArgs.hasArg(STRIP_strip_all_gnu);
  822   Config.OnlyKeepDebug = InputArgs.hasArg(STRIP_only_keep_debug);
  823   Config.KeepFileSymbols = InputArgs.hasArg(STRIP_keep_file_symbols);
  825   for (auto Arg : InputArgs.filtered(STRIP_keep_section))
  830   for (auto Arg : InputArgs.filtered(STRIP_remove_section))
  835   for (auto Arg : InputArgs.filtered(STRIP_strip_symbol))
  840   for (auto Arg : InputArgs.filtered(STRIP_keep_symbol))
  845   if (!InputArgs.hasArg(STRIP_no_strip_all) && !Config.StripDebug &&
  854       InputArgs.hasFlag(STRIP_enable_deterministic_archives,
  857   Config.PreserveDates = InputArgs.hasArg(STRIP_preserve_dates);
  865         InputArgs.getLastArgValue(STRIP_output, Positional[0]);
  887                                InputArgs.getLastArgValue(STRIP_output) == "-"))