Home
last modified time | relevance | path

Searched refs:getLastArg (Results 1 – 14 of 14) 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/clang/lib/Driver/
DTools.cpp114 if (Arg *A = Args.getLastArg(options::OPT_C, options::OPT_CC)) { in CheckPreprocessingOptions()
130 Args.getLastArg(options::OPT_dynamic, options::OPT_mdynamic_no_pic)) in CheckCodeGenerationOptions()
314 if ((A = Args.getLastArg(options::OPT_M, options::OPT_MM)) || in AddPreprocessingOptions()
315 (A = Args.getLastArg(options::OPT_MD)) || in AddPreprocessingOptions()
316 (A = Args.getLastArg(options::OPT_MMD))) { in AddPreprocessingOptions()
319 if (Arg *MF = Args.getLastArg(options::OPT_MF)) { in AddPreprocessingOptions()
340 Arg *OutputOpt = Args.getLastArg(options::OPT_o); in AddPreprocessingOptions()
401 const Arg *YcArg = Args.getLastArg(options::OPT__SLASH_Yc); in AddPreprocessingOptions()
402 const Arg *YuArg = Args.getLastArg(options::OPT__SLASH_Yu); in AddPreprocessingOptions()
541 if (Arg *A = Args.getLastArg(options::OPT_I_)) in AddPreprocessingOptions()
[all …]
DDriver.cpp167 if (CCCIsCPP() || (PhaseArg = DAL.getLastArg(options::OPT_E)) || in getFinalPhase()
168 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_EP)) || in getFinalPhase()
169 (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM)) || in getFinalPhase()
170 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_P))) { in getFinalPhase()
174 } else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) || in getFinalPhase()
175 (PhaseArg = DAL.getLastArg(options::OPT_module_file_info)) || in getFinalPhase()
176 (PhaseArg = DAL.getLastArg(options::OPT_verify_pch)) || in getFinalPhase()
177 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) || in getFinalPhase()
178 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) || in getFinalPhase()
179 (PhaseArg = DAL.getLastArg(options::OPT__migrate)) || in getFinalPhase()
[all …]
DToolChain.cpp36 return Args.getLastArg(options::OPT_mkernel, options::OPT_fapple_kext, in GetRTTIArgument()
72 if (Arg *A = Args.getLastArg(options::OPT_mthread_model)) in ToolChain()
344 if (Arg *A = Args.getLastArg(options::OPT_fuse_ld_EQ)) { in GetLinkerPath()
428 if (Arg *A = Args.getLastArg(options::OPT_march_EQ)) { in ComputeLLVMTriple()
459 if (Arg *A = Args.getLastArg(options::OPT_mlittle_endian, in ComputeLLVMTriple()
468 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) in ComputeLLVMTriple()
470 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) in ComputeLLVMTriple()
530 if (Arg *A = Args.getLastArg(options::OPT_rtlib_EQ)) { in GetRuntimeLibType()
560 const Arg *A = Args.getLastArg(options::OPT_stdlib_EQ); in GetCXXStdlibType()
668 Args.getLastArg(options::OPT_ffast_math, options::OPT_fno_fast_math, in AddFastMathRuntimeIfAvailable()
DToolChains.cpp143 Arg *A = Args.getLastArg(options::OPT_msoft_float, options::OPT_mhard_float, in isSoftFloatABI()
163 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) in getMachOArchName()
167 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) in getMachOArchName()
411 << Args.getLastArg(options::OPT_rtlib_EQ)->getValue() << "darwin"; in AddLinkRuntimeLibArgs()
425 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) { in AddLinkRuntimeLibArgs()
501 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) { in AddDeploymentTarget()
517 Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ); in AddDeploymentTarget()
518 Arg *iOSVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ); in AddDeploymentTarget()
519 Arg *TvOSVersion = Args.getLastArg(options::OPT_mtvos_version_min_EQ); in AddDeploymentTarget()
520 Arg *WatchOSVersion = Args.getLastArg(options::OPT_mwatchos_version_min_EQ); in AddDeploymentTarget()
[all …]
DSanitizerArgs.cpp415 Args.getLastArg(options::OPT_fsanitize_memory_track_origins_EQ, in SanitizerArgs()
536 Args.getLastArg(options::OPT_fsanitize_address_field_padding)) { in SanitizerArgs()
546 Args.getLastArg(options::OPT__SLASH_MTd, options::OPT__SLASH_MT, in SanitizerArgs()
/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/Frontend/
DCompilerInvocation.cpp87 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) { in getOptimizationLevel()
107 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) { in getOptimizationLevelSize()
159 if (Arg *A = Args.getLastArg(OPT_analyzer_store)) { in ParseAnalyzerArgs()
175 if (Arg *A = Args.getLastArg(OPT_analyzer_constraints)) { in ParseAnalyzerArgs()
191 if (Arg *A = Args.getLastArg(OPT_analyzer_output)) { in ParseAnalyzerArgs()
207 if (Arg *A = Args.getLastArg(OPT_analyzer_purge)) { in ParseAnalyzerArgs()
223 if (Arg *A = Args.getLastArg(OPT_analyzer_inlining_mode)) { in ParseAnalyzerArgs()
319 if (Arg *A = Args.getLastArg(OPT_mcode_model)) { in getCodeModel()
383 Arg *A = Args.getLastArg(OPT_fprofile_instrument_EQ); in setPGOInstrumentor()
434 << Args.getLastArg(OPT_O)->getAsString(Args) << "-O" << MaxOptLevel; in ParseCodeGenArgs()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-dlltool/
DDlltoolDriver.cpp119 openFile(Args.getLastArg(OPT_d)->getValue()); in dlltoolDriverMain()
129 if (auto *Arg = Args.getLastArg(OPT_m)) in dlltoolDriverMain()
147 if (auto *Arg = Args.getLastArg(OPT_D)) in dlltoolDriverMain()
159 if (Machine == IMAGE_FILE_MACHINE_I386 && Args.getLastArg(OPT_k)) { in dlltoolDriverMain()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/
DArgList.cpp75 if (Arg *A = getLastArg(Pos, Neg)) in hasFlag()
82 if (Arg *A = getLastArg(Pos, PosAlias, Neg)) in hasFlag()
88 if (Arg *A = getLastArg(Id)) in getLastArgValue()
100 if (Arg *A = getLastArg(Id)) { in AddLastArg()
108 if (Arg *A = getLastArg(Id0, Id1)) { in AddLastArg()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/
DArgList.h246 return getLastArg(Ids...) != nullptr; in hasArg()
251 Arg *getLastArg(OptSpecifiers ...Ids) const { in getLastArg() function
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-lib/
DLibDriver.cpp60 if (auto *Arg = Args->getLastArg(OPT_out)) in getOutputPath()
/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()