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

  /external/clang/include/clang/Driver/
Compilation.h 20 class DerivedArgList;
41 DerivedArgList *TranslatedArgs;
52 DerivedArgList*> TCArgs;
69 InputArgList *Args, DerivedArgList *TranslatedArgs);
78 const DerivedArgList &getArgs() const { return *TranslatedArgs; }
80 DerivedArgList &getArgs() { return *TranslatedArgs; }
105 const DerivedArgList &getArgsForToolChain(const ToolChain *TC,
Driver.h 34 class DerivedArgList;
166 DerivedArgList *TranslateInputArgs(const InputArgList &Args) const;
170 phases::ID getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg = 0)
240 void BuildInputs(const ToolChain &TC, const DerivedArgList &Args,
249 void BuildActions(const ToolChain &TC, const DerivedArgList &Args,
258 void BuildUniversalActions(const ToolChain &TC, const DerivedArgList &Args,
ToolChain.h 27 class DerivedArgList;
115 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/llvm/lib/Option/
ArgList.cpp 333 DerivedArgList::DerivedArgList(const InputArgList &_BaseArgs)
337 DerivedArgList::~DerivedArgList() {
344 const char *DerivedArgList::MakeArgString(StringRef Str) const {
348 Arg *DerivedArgList::MakeFlagArg(const Arg *BaseArg, const Option Opt) const {
356 Arg *DerivedArgList::MakePositionalArg(const Arg *BaseArg, const Option Opt,
366 Arg *DerivedArgList::MakeSeparateArg(const Arg *BaseArg, const Option Opt,
376 Arg *DerivedArgList::MakeJoinedArg(const Arg *BaseArg, const Option Opt,
  /external/clang/lib/Driver/
ArgList.cpp 356 DerivedArgList::DerivedArgList(const InputArgList &_BaseArgs)
360 DerivedArgList::~DerivedArgList() {
367 const char *DerivedArgList::MakeArgString(StringRef Str) const {
371 Arg *DerivedArgList::MakeFlagArg(const Arg *BaseArg, const Option Opt) const {
379 Arg *DerivedArgList::MakePositionalArg(const Arg *BaseArg, const Option Opt,
389 Arg *DerivedArgList::MakeSeparateArg(const Arg *BaseArg, const Option Opt,
399 Arg *DerivedArgList::MakeJoinedArg(const Arg *BaseArg, const Option Opt,
Compilation.cpp 28 InputArgList *_Args, DerivedArgList *_TranslatedArgs)
39 DerivedArgList*>::iterator it = TCArgs.begin(),
57 const DerivedArgList &Compilation::getArgsForToolChain(const ToolChain *TC,
62 DerivedArgList *&Entry = TCArgs[std::make_pair(TC, BoundArch)];
ToolChains.h 176 void AddDeploymentTarget(DerivedArgList &Args) const;
264 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Driver.cpp 107 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, Arg **FinalPhaseArg)
143 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const {
144 DerivedArgList *DAL = new DerivedArgList(Args);
297 DerivedArgList *TranslatedArgs = TranslateInputArgs(*Args);
792 const DerivedArgList &Args,
899 void Driver::BuildInputs(const ToolChain &TC, const DerivedArgList &Args,
    [all...]
ToolChains.cpp 372 void Darwin::AddDeploymentTarget(DerivedArgList &Args) const {
601 DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args,
603 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
    [all...]
  /external/llvm/include/llvm/Option/
ArgList.h 322 /// DerivedArgList - An ordered collection of driver arguments,
324 class DerivedArgList : public ArgList {
332 DerivedArgList(const InputArgList &BaseArgs);
333 ~DerivedArgList();

Completed in 104 milliseconds