• Home
  • Raw
  • Download

Lines Matching refs:hasArg

113   if (!Args.hasArg(options::OPT_nostdlib, options::OPT_shared)) {  in ConstructJob()
119 if (Args.hasArg(options::OPT_static)) { in ConstructJob()
122 if (Args.hasArg(options::OPT_rdynamic)) in ConstructJob()
125 if (Args.hasArg(options::OPT_shared)) { in ConstructJob()
133 if (Args.hasArg(options::OPT_pie)) in ConstructJob()
135 if (Args.hasArg(options::OPT_nopie) || Args.hasArg(options::OPT_pg)) in ConstructJob()
145 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles)) { in ConstructJob()
148 if (!Args.hasArg(options::OPT_shared)) { in ConstructJob()
149 if (Args.hasArg(options::OPT_pg)) in ConstructJob()
151 else if (Args.hasArg(options::OPT_static) && in ConstructJob()
152 !Args.hasArg(options::OPT_nopie)) in ConstructJob()
176 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nodefaultlibs)) { in ConstructJob()
180 if (Args.hasArg(options::OPT_pg)) in ConstructJob()
197 if (Args.hasArg(options::OPT_pthread)) { in ConstructJob()
198 if (!Args.hasArg(options::OPT_shared) && Args.hasArg(options::OPT_pg)) in ConstructJob()
204 if (!Args.hasArg(options::OPT_shared)) { in ConstructJob()
205 if (Args.hasArg(options::OPT_pg)) in ConstructJob()
214 if (!Args.hasArg(options::OPT_nostdlib, options::OPT_nostartfiles)) { in ConstructJob()
216 if (!Args.hasArg(options::OPT_shared)) in ConstructJob()
259 if (DriverArgs.hasArg(clang::driver::options::OPT_nostdinc)) in AddClangSystemIncludeArgs()
262 if (!DriverArgs.hasArg(options::OPT_nobuiltininc)) { in AddClangSystemIncludeArgs()
268 if (DriverArgs.hasArg(options::OPT_nostdlibinc)) in AddClangSystemIncludeArgs()
295 bool Profiling = Args.hasArg(options::OPT_pg); in AddCXXStdlibLibArgs()