HomeSort by relevance Sort by last modified time
    Searched refs:getLastArg (Results 1 - 9 of 9) 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 \arg 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/clang/lib/Driver/
ArgList.cpp 68 Arg *ArgList::getLastArg(OptSpecifier Id) const {
80 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1) const {
94 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
109 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
125 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
143 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
162 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
183 Arg *ArgList::getLastArg(OptSpecifier Id0, OptSpecifier Id1,
206 if (Arg *A = getLastArg(Pos, Neg))
213 if (Arg *A = getLastArg(Id)
    [all...]
ToolChain.cpp 68 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
73 if (Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
162 if (Arg *A = Args.getLastArg(options::OPT_mmacosx_version_min_EQ,
182 if (Arg *A = Args.getLastArg(options::OPT_rtlib_EQ)) {
196 if (Arg *A = Args.getLastArg(options::OPT_stdlib_EQ)) {
Tools.cpp 45 if (Arg *A = Args.getLastArg(options::OPT_C, options::OPT_CC))
56 if (const Arg *A = Args.getLastArg(options::OPT_dynamic,
217 if ((A = Args.getLastArg(options::OPT_M, options::OPT_MM)) ||
218 (A = Args.getLastArg(options::OPT_MD)) ||
219 (A = Args.getLastArg(options::OPT_MMD))) {
224 } else if (Arg *MF = Args.getLastArg(options::OPT_MF)) {
243 Arg *OutputOpt = Args.getLastArg(options::OPT_o);
377 if (Arg *A = Args.getLastArg(options::OPT_I_))
392 if (Arg *A = Args.getLastArg(options::OPT_fmodule_cache_path)) {
460 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
    [all...]
Driver.cpp 138 (PhaseArg = DAL.getLastArg(options::OPT_E)) ||
139 (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM))) {
143 } else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) ||
144 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) ||
145 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) ||
146 (PhaseArg = DAL.getLastArg(options::OPT__migrate)) ||
147 (PhaseArg = DAL.getLastArg(options::OPT__analyze,
149 (PhaseArg = DAL.getLastArg(options::OPT_emit_ast)) ||
150 (PhaseArg = DAL.getLastArg(options::OPT_S))) {
154 } else if ((PhaseArg = DAL.getLastArg(options::OPT_c)))
    [all...]
ToolChains.cpp 136 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ))
140 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
188 (C.getArgs().getLastArg(options::OPT_fapple_kext) ||
189 C.getArgs().getLastArg(options::OPT_mkernel)))
323 << Args.getLastArg(options::OPT_rtlib_EQ)->getValue(Args) << "darwin";
335 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) {
459 Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ);
460 Arg *iOSVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ);
461 Arg *iOSSimVersion = Args.getLastArg(
515 if (const Arg *A = Args.getLastArg(options::OPT_isysroot))
    [all...]
  /frameworks/compile/slang/
llvm-rs-cc.cpp 212 if (const Arg *A = Args->getLastArg(OPT_M_Group)) {
230 if (const Arg *A = Args->getLastArg(OPT_Output_Type_Group)) {
258 << Args->getLastArg(OPT_M_Group)->getAsString(*Args)
259 << Args->getLastArg(OPT_Output_Type_Group)->getAsString(*Args);
  /external/clang/lib/Frontend/
CompilerInvocation.cpp     [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 203 if (Arg *A = Args->getLastArg(OPT_filetype)) {

Completed in 620 milliseconds