Home
last modified time | relevance | path

Searched refs:DerivedArgList (Results 1 – 12 of 12) sorted by relevance

/external/clang/include/clang/Driver/
DCompilation.h22 class DerivedArgList; variable
58 llvm::opt::DerivedArgList *TranslatedArgs;
74 llvm::opt::DerivedArgList *> TCArgs;
95 llvm::opt::DerivedArgList *TranslatedArgs);
150 const llvm::opt::DerivedArgList &getArgs() const { return *TranslatedArgs; } in getArgs()
152 llvm::opt::DerivedArgList &getArgs() { return *TranslatedArgs; } in getArgs()
186 const llvm::opt::DerivedArgList &getArgsForToolChain(const ToolChain *TC,
DDriver.h33 class DerivedArgList; variable
214 llvm::opt::DerivedArgList *
219 phases::ID getFinalPhase(const llvm::opt::DerivedArgList &DAL,
309 void BuildInputs(const ToolChain &TC, llvm::opt::DerivedArgList &Args,
318 void BuildActions(Compilation &C, llvm::opt::DerivedArgList &Args,
DToolChain.h29 class DerivedArgList; variable
182 virtual llvm::opt::DerivedArgList *
183 TranslateArgs(const llvm::opt::DerivedArgList &Args, in TranslateArgs()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/
DArgList.cpp247 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs) in DerivedArgList() function in DerivedArgList
250 const char *DerivedArgList::MakeArgStringRef(StringRef Str) const { in MakeArgStringRef()
254 void DerivedArgList::AddSynthesizedArg(Arg *A) { in AddSynthesizedArg()
258 Arg *DerivedArgList::MakeFlagArg(const Arg *BaseArg, const Option Opt) const { in MakeFlagArg()
265 Arg *DerivedArgList::MakePositionalArg(const Arg *BaseArg, const Option Opt, in MakePositionalArg()
274 Arg *DerivedArgList::MakeSeparateArg(const Arg *BaseArg, const Option Opt, in MakeSeparateArg()
283 Arg *DerivedArgList::MakeJoinedArg(const Arg *BaseArg, const Option Opt, in MakeJoinedArg()
/external/clang/lib/Driver/
DCompilation.cpp26 InputArgList *_Args, DerivedArgList *_TranslatedArgs) in Compilation()
41 DerivedArgList*>::iterator it = TCArgs.begin(), in ~Compilation()
55 const DerivedArgList &Compilation::getArgsForToolChain(const ToolChain *TC, in getArgsForToolChain()
60 DerivedArgList *&Entry = TCArgs[std::make_pair(TC, BoundArch)]; in getArgsForToolChain()
DMSVCToolChain.cpp698 static void TranslateOptArg(Arg *A, llvm::opt::DerivedArgList &DAL, in TranslateOptArg()
791 static void TranslateDArg(Arg *A, llvm::opt::DerivedArgList &DAL, in TranslateDArg()
807 llvm::opt::DerivedArgList *
808 MSVCToolChain::TranslateArgs(const llvm::opt::DerivedArgList &Args, in TranslateArgs()
810 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs()); in TranslateArgs()
DToolChains.h323 llvm::opt::DerivedArgList *
324 TranslateArgs(const llvm::opt::DerivedArgList &Args,
397 void AddDeploymentTarget(llvm::opt::DerivedArgList &Args) const;
528 llvm::opt::DerivedArgList *
529 TranslateArgs(const llvm::opt::DerivedArgList &Args,
860 llvm::opt::DerivedArgList *
861 TranslateArgs(const llvm::opt::DerivedArgList &Args,
1033 llvm::opt::DerivedArgList *
1034 TranslateArgs(const llvm::opt::DerivedArgList &Args,
DDriver.cpp161 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, in getFinalPhase()
203 static Arg *MakeInputArg(DerivedArgList &Args, OptTable *Opts, in MakeInputArg()
212 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const { in TranslateInputArgs()
213 DerivedArgList *DAL = new DerivedArgList(Args); in TranslateInputArgs()
562 DerivedArgList *TranslatedArgs = TranslateInputArgs(*UArgs); in BuildCompilation()
1082 DerivedArgList &Args = C.getArgs(); in BuildUniversalActions()
1169 static bool DiagnoseInputExistence(const Driver &D, const DerivedArgList &Args, in DiagnoseInputExistence()
1208 void Driver::BuildInputs(const ToolChain &TC, DerivedArgList &Args, in BuildInputs()
1368 static Action *buildCudaActions(Compilation &C, DerivedArgList &Args, in buildCudaActions()
1477 void Driver::BuildActions(Compilation &C, DerivedArgList &Args, in BuildActions()
DToolChains.cpp495 void Darwin::AddDeploymentTarget(DerivedArgList &Args) const { in AddDeploymentTarget()
800 DerivedArgList *MachO::TranslateArgs(const DerivedArgList &Args, in TranslateArgs()
802 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs()); in TranslateArgs()
1030 DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args, in TranslateArgs()
1033 DerivedArgList *DAL = MachO::TranslateArgs(Args, BoundArch); in TranslateArgs()
4788 llvm::opt::DerivedArgList *
4789 CudaToolChain::TranslateArgs(const llvm::opt::DerivedArgList &Args, in TranslateArgs()
4791 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs()); in TranslateArgs()
/external/llvm/lib/Option/
DArgList.cpp380 DerivedArgList::DerivedArgList(const InputArgList &BaseArgs) in DerivedArgList() function in DerivedArgList
383 const char *DerivedArgList::MakeArgStringRef(StringRef Str) const { in MakeArgStringRef()
387 void DerivedArgList::AddSynthesizedArg(Arg *A) { in AddSynthesizedArg()
391 Arg *DerivedArgList::MakeFlagArg(const Arg *BaseArg, const Option Opt) const { in MakeFlagArg()
398 Arg *DerivedArgList::MakePositionalArg(const Arg *BaseArg, const Option Opt, in MakePositionalArg()
407 Arg *DerivedArgList::MakeSeparateArg(const Arg *BaseArg, const Option Opt, in MakeSeparateArg()
416 Arg *DerivedArgList::MakeJoinedArg(const Arg *BaseArg, const Option Opt, in MakeJoinedArg()
/external/llvm/include/llvm/Option/
DArgList.h377 class DerivedArgList final : public ArgList {
385 DerivedArgList(const InputArgList &BaseArgs);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Option/
DArgList.h434 class DerivedArgList final : public ArgList {
442 DerivedArgList(const InputArgList &BaseArgs);