Searched refs:DerivedArgList (Results 1 – 9 of 9) sorted by relevance
/external/clang/include/clang/Driver/ |
D | Compilation.h | 20 class DerivedArgList; variable 40 DerivedArgList *TranslatedArgs; 51 DerivedArgList*> TCArgs; 68 InputArgList *Args, DerivedArgList *TranslatedArgs); 77 const DerivedArgList &getArgs() const { return *TranslatedArgs; } in getArgs() 79 DerivedArgList &getArgs() { return *TranslatedArgs; } in getArgs() 105 const DerivedArgList &getArgsForToolChain(const ToolChain *TC,
|
D | Driver.h | 38 class DerivedArgList; variable 187 DerivedArgList *TranslateInputArgs(const InputArgList &Args) const; 191 phases::ID getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg = 0) 265 void BuildInputs(const ToolChain &TC, const DerivedArgList &Args, 274 void BuildActions(const ToolChain &TC, const DerivedArgList &Args, 283 void BuildUniversalActions(const ToolChain &TC, const DerivedArgList &Args,
|
D | ToolChain.h | 26 class DerivedArgList; variable 105 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args, in TranslateArgs()
|
D | ArgList.h | 343 class DerivedArgList : public ArgList { 351 DerivedArgList(const InputArgList &BaseArgs); 352 ~DerivedArgList();
|
/external/clang/lib/Driver/ |
D | ArgList.cpp | 350 DerivedArgList::DerivedArgList(const InputArgList &_BaseArgs) in DerivedArgList() function in DerivedArgList 354 DerivedArgList::~DerivedArgList() { in ~DerivedArgList() 361 const char *DerivedArgList::MakeArgString(StringRef Str) const { in MakeArgString() 365 Arg *DerivedArgList::MakeFlagArg(const Arg *BaseArg, const Option *Opt) const { in MakeFlagArg() 371 Arg *DerivedArgList::MakePositionalArg(const Arg *BaseArg, const Option *Opt, in MakePositionalArg() 379 Arg *DerivedArgList::MakeSeparateArg(const Arg *BaseArg, const Option *Opt, in MakeSeparateArg() 387 Arg *DerivedArgList::MakeJoinedArg(const Arg *BaseArg, const Option *Opt, in MakeJoinedArg()
|
D | Compilation.cpp | 29 InputArgList *_Args, DerivedArgList *_TranslatedArgs) in Compilation() 40 DerivedArgList*>::iterator it = TCArgs.begin(), in ~Compilation() 58 const DerivedArgList &Compilation::getArgsForToolChain(const ToolChain *TC, in getArgsForToolChain() 63 DerivedArgList *&Entry = TCArgs[std::make_pair(TC, BoundArch)]; in getArgsForToolChain()
|
D | ToolChains.h | 203 void AddDeploymentTarget(DerivedArgList &Args) const; 293 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
|
D | Driver.cpp | 131 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg) in getFinalPhase() 167 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const { in TranslateInputArgs() 168 DerivedArgList *DAL = new DerivedArgList(Args); in TranslateInputArgs() 334 DerivedArgList *TranslatedArgs = TranslateInputArgs(*Args); in BuildCompilation() 865 const DerivedArgList &Args, in BuildUniversalActions() 972 void Driver::BuildInputs(const ToolChain &TC, const DerivedArgList &Args, in BuildInputs() 1096 void Driver::BuildActions(const ToolChain &TC, const DerivedArgList &Args, in BuildActions()
|
D | ToolChains.cpp | 442 void Darwin::AddDeploymentTarget(DerivedArgList &Args) const { in AddDeploymentTarget() 681 DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args, in TranslateArgs() 683 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs()); in TranslateArgs()
|