Lines Matching defs:currentArg
449 for (const llvm::opt::Arg *currentArg :
451 opts.featuresAsWritten.emplace_back(currentArg->getValue());
829 for (const auto *currentArg : args.filtered(clang::driver::options::OPT_D,
831 if (currentArg->getOption().matches(clang::driver::options::OPT_D)) {
832 opts.addMacroDef(currentArg->getValue());
834 opts.addMacroUndef(currentArg->getValue());
839 for (const auto *currentArg : args.filtered(clang::driver::options::OPT_I))
840 opts.searchDirectoriesFromDashI.emplace_back(currentArg->getValue());
844 for (const auto *currentArg :
846 opts.searchDirectoriesFromIntrModPath.emplace_back(currentArg->getValue());
849 if (const auto *currentArg = args.getLastArg(
852 (currentArg->getOption().matches(clang::driver::options::OPT_cpp))