HomeSort by: relevance | last modified time | path
    Searched defs:InputArgs (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-mt/
llvm-mt.cpp 89 opt::InputArgList InputArgs = T.ParseArgs(ArgsArr, MAI, MAC);
91 for (auto *Arg : InputArgs.filtered(OPT_INPUT)) {
92 auto ArgString = Arg->getAsString(InputArgs);
104 for (auto &Arg : InputArgs) {
111 if (InputArgs.hasArg(OPT_help)) {
116 std::vector<std::string> InputFiles = InputArgs.getAllArgValues(OPT_manifest);
123 if (InputArgs.hasArg(OPT_out)) {
124 OutputFile = InputArgs.getLastArgValue(OPT_out);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cvtres/
llvm-cvtres.cpp 123 opt::InputArgList InputArgs = T.ParseArgs(ArgsArr, MAI, MAC);
125 if (InputArgs.hasArg(OPT_HELP)) {
130 bool Verbose = InputArgs.hasArg(OPT_VERBOSE);
134 if (opt::Arg *Arg = InputArgs.getLastArg(OPT_MACHINE)) {
146 std::vector<std::string> InputFiles = InputArgs.getAllArgValues(OPT_INPUT);
154 if (opt::Arg *Arg = InputArgs.getLastArg(OPT_OUT)) {
162 if (llvm::opt::Arg *Arg = InputArgs.getLastArg(OPT_TIMESTAMP)) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ml/
llvm-ml.cpp 131 const opt::ArgList &InputArgs) {
143 Parser->setShowParsedOperands(InputArgs.hasArg(OPT_show_inst_operands));
150 auto Defines = InputArgs.getAllArgValues(OPT_define);
179 opt::InputArgList InputArgs =
183 for (auto *Arg : InputArgs.filtered(OPT_INPUT)) {
184 std::string ArgString = Arg->getAsString(InputArgs);
205 for (auto *Arg : InputArgs.filtered(OPT_assembly_file)) {
211 InputFilename = Arg->getAsString(InputArgs);
214 for (auto *Arg : InputArgs.filtered(OPT_unsupported_Group)) {
220 if (InputArgs.hasArg(OPT_help))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCWin64EH.cpp 677 InputArgs,
766 Location = InputArgs;
792 if (Location != IntRegs && Location != FloatRegs && Location != InputArgs)
794 Location = InputArgs;
800 Location != InputArgs && Location != StackAdjust)
816 Location != InputArgs)
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lipo/
llvm-lipo.cpp 153 opt::InputArgList InputArgs =
158 StringRef(InputArgs.getArgString(MissingArgumentIndex)) +
161 if (InputArgs.size() == 0) {
167 if (InputArgs.hasArg(LIPO_help)) {
173 if (InputArgs.hasArg(LIPO_version)) {
179 for (auto Arg : InputArgs.filtered(LIPO_UNKNOWN))
180 reportError("unknown argument '" + Arg->getAsString(InputArgs) + "'");
182 for (auto Arg : InputArgs.filtered(LIPO_INPUT))
184 for (auto Arg : InputArgs.filtered(LIPO_arch)) {
195 if (InputArgs.hasArg(LIPO_output)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
ConfigManager.cpp 670 llvm::opt::InputArgList InputArgs =
673 if (InputArgs.size() == 0 && DashDash == RawArgsArr.end()) {
678 if (InputArgs.hasArg(OBJCOPY_help)) {
683 if (InputArgs.hasArg(OBJCOPY_version)) {
691 for (auto Arg : InputArgs.filtered(OBJCOPY_UNKNOWN))
693 Arg->getAsString(InputArgs).c_str());
695 for (auto Arg : InputArgs.filtered(OBJCOPY_INPUT))
710 if (InputArgs.hasArg(OBJCOPY_target) &&
711 (InputArgs.hasArg(OBJCOPY_input_target) ||
712 InputArgs.hasArg(OBJCOPY_output_target))
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
llvm-rc.cpp 353 opt::InputArgList InputArgs = T.ParseArgs(ArgsArr, MAI, MAC);
356 if (InputArgs.hasArg(WINDRES_help)) {
362 if (InputArgs.hasArg(WINDRES_version)) {
368 std::vector<std::string> FileArgs = InputArgs.getAllArgValues(WINDRES_INPUT);
371 if (InputArgs.hasArg(WINDRES_input)) {
372 Opts.InputFile = InputArgs.getLastArgValue(WINDRES_input).str();
381 if (InputArgs.hasArg(WINDRES_output)) {
382 Opts.OutputFile = InputArgs.getLastArgValue(WINDRES_output).str();
391 if (InputArgs.hasArg(WINDRES_input_format)) {
393 parseFormat(InputArgs.getLastArgValue(WINDRES_input_format))
    [all...]

Completed in 22 milliseconds