HomeSort by relevance Sort by last modified time
    Searched refs:getLastArg (Results 1 - 11 of 11) sorted by null

  /external/clang/include/clang/Driver/
ArgList.h 170 return getLastArg(Id) != 0;
173 return getLastArg(Id0, Id1) != 0;
176 return getLastArg(Id0, Id1, Id2) != 0;
179 /// getLastArg - Return the last argument matching \p Id, or null.
183 Arg *getLastArg(OptSpecifier Id) const;
184 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1) const;
185 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2) const;
186 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2,
188 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2,
190 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2
    [all...]
  /external/llvm/include/llvm/Option/
ArgList.h 166 return getLastArg(Id) != 0;
169 return getLastArg(Id0, Id1) != 0;
172 return getLastArg(Id0, Id1, Id2) != 0;
175 /// getLastArg - Return the last argument matching \p Id, or null.
179 Arg *getLastArg(OptSpecifier Id) const;
180 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1) const;
181 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2) const;
182 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2,
184 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2,
186 Arg *getLastArg(OptSpecifier Id0, OptSpecifier Id1, OptSpecifier Id2
    [all...]
  /external/llvm/lib/Option/
ArgList.cpp 66 Arg *ArgList::getLastArg(OptSpecifier Id) const {
78 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const {
92 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
107 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
123 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
141 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
160 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
181 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
204 if (Arg *A = getLastArg(Pos, Neg))
211 if (Arg *A = getLastArg(Id)
    [all...]
  /external/clang/lib/Driver/
ToolChain.cpp 118 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
123 if (Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
221 if (Arg *A = Args.getLastArg(options::OPT_mmacosx_version_min_EQ,
242 if (Arg *A = Args.getLastArg(options::OPT_rtlib_EQ)) {
256 if (Arg *A = Args.getLastArg(options::OPT_stdlib_EQ)) {
340 Arg *A = Args.getLastArg(options::OPT_ffast_math,
ArgList.cpp 67 Arg *ArgList::getLastArg(OptSpecifier Id) const {
79 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const {
92 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
107 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
123 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
141 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
160 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
181 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
204 if (Arg *A = getLastArg(Pos, Neg))
211 if (Arg *A = getLastArg(Id)
    [all...]
Tools.cpp 44 if (Arg *A = Args.getLastArg(options::OPT_C, options::OPT_CC))
55 if (const Arg *A = Args.getLastArg(options::OPT_dynamic,
245 if ((A = Args.getLastArg(options::OPT_M, options::OPT_MM)) ||
246 (A = Args.getLastArg(options::OPT_MD)) ||
247 (A = Args.getLastArg(options::OPT_MMD))) {
250 if (Arg *MF = Args.getLastArg(options::OPT_MF)) {
271 Arg *OutputOpt = Args.getLastArg(options::OPT_o);
405 if (Arg *A = Args.getLastArg(options::OPT_I_))
478 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
488 if (Arg *A = Args.getLastArg(options::OPT_march_EQ))
    [all...]
Driver.cpp 114 (PhaseArg = DAL.getLastArg(options::OPT_E)) ||
115 (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM))) {
119 } else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) ||
120 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) ||
121 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) ||
122 (PhaseArg = DAL.getLastArg(options::OPT__migrate)) ||
123 (PhaseArg = DAL.getLastArg(options::OPT__analyze,
125 (PhaseArg = DAL.getLastArg(options::OPT_emit_ast)) ||
126 (PhaseArg = DAL.getLastArg(options::OPT_S))) {
130 } else if ((PhaseArg = DAL.getLastArg(options::OPT_c)))
    [all...]
ToolChains.cpp 140 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ))
144 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
267 << Args.getLastArg(options::OPT_rtlib_EQ)->getValue() << "darwin";
281 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) {
378 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
395 Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ);
396 Arg *iOSVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ);
397 Arg *iOSSimVersion = Args.getLastArg(
427 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
543 if (const Arg *A = Args.getLastArg(options::OPT_isysroot))
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 67 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
85 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
127 if (Arg *A = Args.getLastArg(OPT_analyzer_store)) {
143 if (Arg *A = Args.getLastArg(OPT_analyzer_constraints)) {
159 if (Arg *A = Args.getLastArg(OPT_analyzer_output)) {
175 if (Arg *A = Args.getLastArg(OPT_analyzer_purge)) {
191 if (Arg *A = Args.getLastArg(OPT_analyzer_inlining_mode)) {
294 << Args.getLastArg(OPT_O)->getAsString(Args) << OptLevel;
394 << Args.getLastArg(OPT_coverage_version_EQ)->getAsString(Args)
417 if (Arg *A = Args.getLastArg(OPT_mstack_alignment))
    [all...]
  /frameworks/compile/slang/
llvm-rs-cc.cpp 224 if (const Arg *A = Args->getLastArg(OPT_M_Group)) {
242 if (const Arg *A = Args->getLastArg(OPT_Output_Type_Group)) {
270 << Args->getLastArg(OPT_M_Group)->getAsString(*Args)
271 << Args->getLastArg(OPT_Output_Type_Group)->getAsString(*Args);
  /external/clang/tools/driver/
cc1as_main.cpp 209 if (Arg *A = Args->getLastArg(OPT_filetype)) {

Completed in 255 milliseconds