Searched refs:ArgList (Results 1 - 25 of 57) sorted by relevance

123

/external/clang/lib/Driver/
H A DToolChains.h106 void init(const llvm::Triple &TargetTriple, const llvm::opt::ArgList &Args,
147 const llvm::opt::ArgList &Args,
153 const llvm::opt::ArgList &Args,
181 void init(const llvm::Triple &TargetTriple, const llvm::opt::ArgList &Args);
216 const llvm::opt::ArgList &Args);
245 const llvm::opt::ArgList &DriverArgs,
268 const llvm::opt::ArgList &Args);
276 StringRef getMachOArchName(const llvm::opt::ArgList &Args) const;
279 virtual void AddLinkARCArgs(const llvm::opt::ArgList &Args,
283 virtual void AddLinkRuntimeLibArgs(const llvm::opt::ArgList
[all...]
H A DTools.h42 const llvm::opt::ArgList &Args,
48 static const char *getBaseInputName(const llvm::opt::ArgList &Args,
50 static const char *getBaseInputStem(const llvm::opt::ArgList &Args,
52 static const char *getDependencyFileName(const llvm::opt::ArgList &Args,
57 const Driver &D, const llvm::opt::ArgList &Args,
63 void AddAArch64TargetArgs(const llvm::opt::ArgList &Args,
66 const llvm::opt::ArgList &Args,
69 void AddARM64TargetArgs(const llvm::opt::ArgList &Args,
71 void AddMIPSTargetArgs(const llvm::opt::ArgList &Args,
73 void AddPPCTargetArgs(const llvm::opt::ArgList
[all...]
H A DToolChain.cpp22 #include "llvm/Option/ArgList.h"
35 static llvm::opt::Arg *GetRTTIArgument(const ArgList &Args) {
40 static ToolChain::RTTIMode CalculateRTTIMode(const ArgList &Args,
69 const ArgList &Args)
272 const ArgList &Args) {
287 std::string ToolChain::getCompilerRT(const ArgList &Args, StringRef Component,
307 const char *ToolChain::getCompilerRTArgString(const llvm::opt::ArgList &Args,
313 bool ToolChain::needsProfileRT(const ArgList &Args) {
417 std::string ToolChain::ComputeLLVMTriple(const ArgList &Args,
505 std::string ToolChain::ComputeEffectiveClangTriple(const ArgList
[all...]
H A DCrossWindowsToolChain.cpp13 #include "llvm/Option/ArgList.h"
20 const llvm::opt::ArgList &Args)
51 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
71 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
95 AddCXXStdlibLibArgs(const llvm::opt::ArgList &DriverArgs,
H A DToolChains.cpp26 #include "llvm/Option/ArgList.h"
45 MachO::MachO(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
54 Darwin::Darwin(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
142 static bool isSoftFloatABI(const ArgList &Args) {
153 StringRef MachO::getMachOArchName(const ArgList &Args) const {
179 std::string MachO::ComputeEffectiveClangTriple(const ArgList &Args,
186 std::string Darwin::ComputeEffectiveClangTriple(const ArgList &Args,
238 const ArgList &Args)
258 static bool isObjCAutoRefCount(const ArgList &Args) {
262 void DarwinClang::AddLinkARCArgs(const ArgList
[all...]
/external/clang/include/clang/Driver/
H A DToolChain.h28 class ArgList;
72 const llvm::opt::ArgList &Args;
100 const llvm::opt::ArgList &Args);
108 static void addSystemInclude(const llvm::opt::ArgList &DriverArgs,
111 static void addExternCSystemInclude(const llvm::opt::ArgList &DriverArgs,
115 addExternCSystemIncludeIfExists(const llvm::opt::ArgList &DriverArgs,
118 static void addSystemIncludes(const llvm::opt::ArgList &DriverArgs,
264 virtual std::string getCompilerRT(const llvm::opt::ArgList &Args,
268 const char *getCompilerRTArgString(const llvm::opt::ArgList &Args,
272 static bool needsProfileRT(const llvm::opt::ArgList
[all...]
H A DSanitizerArgs.h15 #include "llvm/Option/ArgList.h"
44 SanitizerArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
69 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
H A DTool.h18 class ArgList;
130 const llvm::opt::ArgList &TCArgs,
H A DDriver.h32 class ArgList;
299 /// ArgList.
391 Action *ConstructPhaseAction(Compilation &C, const llvm::opt::ArgList &Args,
447 void setLTOMode(const llvm::opt::ArgList &Args);
453 const ToolChain &getToolChain(const llvm::opt::ArgList &Args,
496 bool isOptimizationLevelFast(const llvm::opt::ArgList &Args);
/external/llvm/include/llvm/Option/
H A DArg.h25 class ArgList;
47 /// ArgList.
107 void render(const ArgList &Args, ArgStringList &Output) const;
114 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
121 std::string getAsString(const ArgList &Args) const;
H A DArgList.h1 //===--- ArgList.h - Argument List Management -------------------*- C++ -*-===//
27 class ArgList;
30 /// arg_iterator - Iterates through arguments stored inside an ArgList.
36 const ArgList &Args;
57 arg_iterator(SmallVectorImpl<Arg *>::const_iterator it, const ArgList &Args,
88 /// ArgList - Ordered collection of driver arguments.
90 /// The ArgList class manages a list of Arg instances as well as
94 class ArgList { class in namespace:llvm::opt
110 ArgList() = default;
116 ArgList(ArgLis function in class:llvm::opt::ArgList
[all...]
H A DOptTable.h21 class ArgList;
130 Arg *ParseOneArg(const ArgList &Args, unsigned &Index,
/external/llvm/include/llvm/Support/
H A DThreading.h91 void call_once(once_flag &flag, Function &&F, Args &&... ArgList) { argument
94 std::forward<Args>(ArgList)...);
100 std::forward<Function>(F)(std::forward<Args>(ArgList)...);
H A DThreadPool.h78 inline std::shared_future<VoidTy> async(Function &&F, Args &&... ArgList) { argument
80 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DThreading.h91 void call_once(once_flag &flag, Function &&F, Args &&... ArgList) { argument
94 std::forward<Args>(ArgList)...);
100 std::forward<Function>(F)(std::forward<Args>(ArgList)...);
/external/llvm/lib/Option/
H A DArgList.cpp1 //===--- ArgList.cpp - Argument List Management ---------------------------===//
10 #include "llvm/Option/ArgList.h"
37 void ArgList::append(Arg *A) {
41 void ArgList::eraseArg(OptSpecifier Id) {
47 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const {
55 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1) const {
64 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1,
74 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id0, OptSpecifier Id1,
84 Arg *ArgList::getLastArg(OptSpecifier Id) const {
96 Arg *ArgList
[all...]
/external/swiftshader/third_party/subzero/src/
H A DIceTypes.h167 void appendArgType(Type ArgType) { ArgList.push_back(ArgType); }
171 SizeT getNumArgs() const { return ArgList.size(); }
173 assert(Index < ArgList.size());
174 return ArgList[Index];
176 const ArgListType &getArgList() const { return ArgList; }
183 ArgListType ArgList;
/external/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp23 #include "llvm/Option/ArgList.h"
34 clang::createInvocationFromCommandLine(ArrayRef<const char *> ArgList, argument
42 SmallVector<const char *, 16> Args(ArgList.begin(), ArgList.end());
/external/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_execfile.py12 ArgList, String, syms)
34 open_args = ArgList([filename.clone()], rparen=execfile_paren)
H A Dfix_throw.py14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple namespace
53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
H A Dfix_raise.py29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple namespace
83 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
/external/python/cpython3/Lib/lib2to3/fixes/
H A Dfix_execfile.py12 ArgList, String, syms)
34 open_args = ArgList([filename.clone()], rparen=execfile_paren)
H A Dfix_raise.py29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple namespace
83 with_tb = Attr(e, Name('with_traceback')) + [ArgList([tb])]
H A Dfix_throw.py14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple namespace
53 with_tb = Attr(e, Name('with_traceback')) + [ArgList([tb])]
/external/clang/include/clang/Frontend/
H A DUtils.h30 class ArgList;
194 int getLastArgIntValue(const llvm::opt::ArgList &Args,
198 inline int getLastArgIntValue(const llvm::opt::ArgList &Args,
204 uint64_t getLastArgUInt64Value(const llvm::opt::ArgList &Args,
208 inline uint64_t getLastArgUInt64Value(const llvm::opt::ArgList &Args,

Completed in 478 milliseconds

123