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

  /external/clang/include/clang/Driver/
Compilation.h 20 class DerivedArgList;
40 DerivedArgList *TranslatedArgs;
51 DerivedArgList*> TCArgs;
68 InputArgList *Args, DerivedArgList *TranslatedArgs);
77 const DerivedArgList &getArgs() const { return *TranslatedArgs; }
79 DerivedArgList &getArgs() { return *TranslatedArgs; }
105 const DerivedArgList &getArgsForToolChain(const ToolChain *TC,
Driver.h 38 class DerivedArgList;
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,
ToolChain.h 26 class DerivedArgList;
105 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
ArgList.h 341 /// DerivedArgList - An ordered collection of driver arguments,
343 class DerivedArgList : public ArgList {
351 DerivedArgList(const InputArgList &BaseArgs);
352 ~DerivedArgList();
  /external/clang/lib/Driver/
ArgList.cpp 350 DerivedArgList::DerivedArgList(const InputArgList &_BaseArgs)
354 DerivedArgList::~DerivedArgList() {
361 const char *DerivedArgList::MakeArgString(StringRef Str) const {
365 Arg *DerivedArgList::MakeFlagArg(const Arg *BaseArg, const Option *Opt) const {
371 Arg *DerivedArgList::MakePositionalArg(const Arg *BaseArg, const Option *Opt,
379 Arg *DerivedArgList::MakeSeparateArg(const Arg *BaseArg, const Option *Opt,
387 Arg *DerivedArgList::MakeJoinedArg(const Arg *BaseArg, const Option *Opt,
Compilation.cpp 29 InputArgList *_Args, DerivedArgList *_TranslatedArgs)
40 DerivedArgList*>::iterator it = TCArgs.begin(),
58 const DerivedArgList &Compilation::getArgsForToolChain(const ToolChain *TC,
63 DerivedArgList *&Entry = TCArgs[std::make_pair(TC, BoundArch)];
ToolChains.h 203 void AddDeploymentTarget(DerivedArgList &Args) const;
293 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Driver.cpp 131 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg)
167 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const {
168 DerivedArgList *DAL = new DerivedArgList(Args);
334 DerivedArgList *TranslatedArgs = TranslateInputArgs(*Args);
865 const DerivedArgList &Args,
    [all...]
ToolChains.cpp 442 void Darwin::AddDeploymentTarget(DerivedArgList &Args) const {
681 DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args,
683 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
    [all...]

Completed in 68 milliseconds