Home
last modified time | relevance | path

Searched refs:getLastArg (Results 1 – 10 of 10) sorted by relevance

/external/llvm/include/llvm/Option/
DArgList.h186 return getLastArg(Id) != nullptr; in hasArg()
189 return getLastArg(Id0, Id1) != nullptr; in hasArg()
192 return getLastArg(Id0, Id1, Id2) != nullptr; in hasArg()
204 Arg *getLastArg(OptSpecifier Id) const;
205 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1) const;
206 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2) const;
207 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2,
209 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2,
211 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2,
213 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2,
[all …]
/external/llvm/lib/Option/
DArgList.cpp84 Arg *ArgList::getLastArg(OptSpecifier Id) const { in getLastArg() function in ArgList
96 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const { in getLastArg() function in ArgList
110 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() function in ArgList
125 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() function in ArgList
141 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() function in ArgList
159 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() function in ArgList
178 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() function in ArgList
199 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1, in getLastArg() function in ArgList
222 if (Arg *A = getLastArg(Pos, Neg)) in hasFlag()
229 if (Arg *A = getLastArg(Pos, PosAlias, Neg)) in hasFlag()
[all …]
/external/clang/lib/Driver/
DTools.cpp88 if (Arg *A = Args.getLastArg(options::OPT_C, options::OPT_CC)) { in CheckPreprocessingOptions()
104 Args.getLastArg(options::OPT_dynamic, options::OPT_mdynamic_no_pic)) in CheckCodeGenerationOptions()
287 if ((A = Args.getLastArg(options::OPT_M, options::OPT_MM)) || in AddPreprocessingOptions()
288 (A = Args.getLastArg(options::OPT_MD)) || in AddPreprocessingOptions()
289 (A = Args.getLastArg(options::OPT_MMD))) { in AddPreprocessingOptions()
292 if (Arg *MF = Args.getLastArg(options::OPT_MF)) { in AddPreprocessingOptions()
313 Arg *OutputOpt = Args.getLastArg(options::OPT_o); in AddPreprocessingOptions()
442 if (Arg *A = Args.getLastArg(options::OPT_I_)) in AddPreprocessingOptions()
552 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) in getARMArchCPUFromArgs()
554 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) in getARMArchCPUFromArgs()
[all …]
DDriver.cpp163 if (CCCIsCPP() || (PhaseArg = DAL.getLastArg(options::OPT_E)) || in getFinalPhase()
164 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_EP)) || in getFinalPhase()
165 (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM)) || in getFinalPhase()
166 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_P))) { in getFinalPhase()
170 } else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) || in getFinalPhase()
171 (PhaseArg = DAL.getLastArg(options::OPT_module_file_info)) || in getFinalPhase()
172 (PhaseArg = DAL.getLastArg(options::OPT_verify_pch)) || in getFinalPhase()
173 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) || in getFinalPhase()
174 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) || in getFinalPhase()
175 (PhaseArg = DAL.getLastArg(options::OPT__migrate)) || in getFinalPhase()
[all …]
DToolChain.cpp35 return Args.getLastArg(options::OPT_mkernel, options::OPT_fapple_kext, in GetRTTIArgument()
71 if (Arg *A = Args.getLastArg(options::OPT_mthread_model)) in ToolChain()
343 if (Arg *A = Args.getLastArg(options::OPT_fuse_ld_EQ)) { in GetLinkerPath()
420 if (Arg *A = Args.getLastArg(options::OPT_march_EQ)) { in ComputeLLVMTriple()
451 if (Arg *A = Args.getLastArg(options::OPT_mlittle_endian, in ComputeLLVMTriple()
460 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) in ComputeLLVMTriple()
462 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) in ComputeLLVMTriple()
523 if (Arg *A = Args.getLastArg(options::OPT_rtlib_EQ)) { in GetRuntimeLibType()
537 if (Arg *A = Args.getLastArg(options::OPT_stdlib_EQ)) { in GetCXXStdlibType()
638 Args.getLastArg(options::OPT_ffast_math, options::OPT_fno_fast_math, in AddFastMathRuntimeIfAvailable()
DToolChains.cpp132 Arg *A = Args.getLastArg(options::OPT_msoft_float, options::OPT_mhard_float, in isSoftFloatABI()
152 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) in getMachOArchName()
156 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) in getMachOArchName()
390 << Args.getLastArg(options::OPT_rtlib_EQ)->getValue() << "darwin"; in AddLinkRuntimeLibArgs()
404 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) { in AddLinkRuntimeLibArgs()
471 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) { in AddDeploymentTarget()
487 Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ); in AddDeploymentTarget()
488 Arg *iOSVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ); in AddDeploymentTarget()
489 Arg *TvOSVersion = Args.getLastArg(options::OPT_mtvos_version_min_EQ); in AddDeploymentTarget()
490 Arg *WatchOSVersion = Args.getLastArg(options::OPT_mwatchos_version_min_EQ); in AddDeploymentTarget()
[all …]
DSanitizerArgs.cpp421 Args.getLastArg(options::OPT_fsanitize_memory_track_origins_EQ, in SanitizerArgs()
521 Args.getLastArg(options::OPT_fsanitize_address_field_padding)) { in SanitizerArgs()
531 Args.getLastArg(options::OPT__SLASH_MTd, options::OPT__SLASH_MT, in SanitizerArgs()
/external/clang/lib/Frontend/
DCompilerInvocation.cpp84 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) { in getOptimizationLevel()
104 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) { in getOptimizationLevelSize()
142 if (Arg *A = Args.getLastArg(OPT_analyzer_store)) { in ParseAnalyzerArgs()
158 if (Arg *A = Args.getLastArg(OPT_analyzer_constraints)) { in ParseAnalyzerArgs()
174 if (Arg *A = Args.getLastArg(OPT_analyzer_output)) { in ParseAnalyzerArgs()
190 if (Arg *A = Args.getLastArg(OPT_analyzer_purge)) { in ParseAnalyzerArgs()
206 if (Arg *A = Args.getLastArg(OPT_analyzer_inlining_mode)) { in ParseAnalyzerArgs()
302 if (Arg *A = Args.getLastArg(OPT_mcode_model)) { in getCodeModel()
377 << Args.getLastArg(OPT_O)->getAsString(Args) << "-O" << MaxOptLevel; in ParseCodeGenArgs()
391 if (Arg *A = Args.getLastArg(OPT_fveclib)) { in ParseCodeGenArgs()
[all …]
/external/llvm/lib/LibDriver/
DLibDriver.cpp61 if (auto *Arg = Args->getLastArg(OPT_out)) in getOutputPath()
/external/clang/tools/driver/
Dcc1as_main.cpp226 if (Arg *A = Args.getLastArg(OPT_filetype)) { in CreateFromArgs()