HomeSort by relevance Sort by last modified time
    Searched refs:ArgList (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/clang/include/clang/Driver/
ToolChain.h 24 class ArgList;
57 const llvm::opt::ArgList &Args;
77 const llvm::opt::ArgList &Args);
85 static void addSystemInclude(const llvm::opt::ArgList &DriverArgs,
88 static void addExternCSystemInclude(const llvm::opt::ArgList &DriverArgs,
92 addExternCSystemIncludeIfExists(const llvm::opt::ArgList &DriverArgs,
95 static void addSystemIncludes(const llvm::opt::ArgList &DriverArgs,
244 ComputeLLVMTriple(const llvm::opt::ArgList &Args,
253 const llvm::opt::ArgList &Args,
274 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs
    [all...]
Tool.h 17 class ArgList;
75 const llvm::opt::ArgList &TCArgs,
Driver.h 30 class ArgList;
250 /// ArgList.
317 void PrintOptions(const llvm::opt::ArgList &Args) const;
348 Action *ConstructPhaseAction(const llvm::opt::ArgList &Args, phases::ID Phase,
390 bool IsUsingLTO(const llvm::opt::ArgList &Args) const;
397 const ToolChain &getToolChain(const llvm::opt::ArgList &Args,
  /external/clang/lib/Driver/
Tools.h 36 static const char *getBaseInputName(const llvm::opt::ArgList &Args,
38 static const char *getBaseInputStem(const llvm::opt::ArgList &Args,
40 static const char *getDependencyFileName(const llvm::opt::ArgList &Args,
46 const llvm::opt::ArgList &Args,
51 void AddARMTargetArgs(const llvm::opt::ArgList &Args,
54 void AddMIPSTargetArgs(const llvm::opt::ArgList &Args,
56 void AddPPCTargetArgs(const llvm::opt::ArgList &Args,
58 void AddR600TargetArgs(const llvm::opt::ArgList &Args,
60 void AddSparcTargetArgs(const llvm::opt::ArgList &Args,
62 void AddSystemZTargetArgs(const llvm::opt::ArgList &Args
    [all...]
ToolChains.h 87 const llvm::opt::ArgList &Args);
121 const llvm::opt::ArgList &Args,
131 const llvm::opt::ArgList &Args);
209 const llvm::opt::ArgList &Args);
212 std::string ComputeEffectiveClangTriple(const llvm::opt::ArgList &Args,
262 StringRef getDarwinArchName(const llvm::opt::ArgList &Args) const;
275 virtual void AddLinkARCArgs(const llvm::opt::ArgList &Args,
281 AddLinkRuntimeLibArgs(const llvm::opt::ArgList &Args,
371 const llvm::opt::ArgList &Args);
376 virtual void AddLinkRuntimeLibArgs(const llvm::opt::ArgList &Args
    [all...]
ToolChain.cpp 19 #include "llvm/Option/ArgList.h"
28 const ArgList &A)
158 static const char *getARMTargetCPU(const ArgList &Args,
240 std::string ToolChain::ComputeLLVMTriple(const ArgList &Args,
271 std::string ToolChain::ComputeEffectiveClangTriple(const ArgList &Args,
283 void ToolChain::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
288 void ToolChain::addClangTargetOptions(const ArgList &DriverArgs,
293 const ArgList &Args) const
308 ToolChain::CXXStdlibType ToolChain::GetCXXStdlibType(const ArgList &Args) const{
323 /*static*/ void ToolChain::addSystemInclude(const ArgList &DriverArgs
    [all...]
SanitizerArgs.h 17 #include "llvm/Option/ArgList.h"
55 SanitizerArgs(const ToolChain &TC, const llvm::opt::ArgList &Args);
76 void addArgs(const llvm::opt::ArgList &Args,
141 static bool parse(const Driver &D, const llvm::opt::ArgList &Args,
183 /// Produce an argument string from ArgList \p Args, which shows how it
188 const llvm::opt::ArgList &Args,
190 for (llvm::opt::ArgList::const_reverse_iterator I = Args.rbegin(),
206 static std::string describeSanitizeArg(const llvm::opt::ArgList &Args,
ToolChains.cpp 23 #include "llvm/Option/ArgList.h"
46 Darwin::Darwin(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
135 StringRef Darwin::getDarwinArchName(const ArgList &Args) const {
158 std::string Darwin::ComputeEffectiveClangTriple(const ArgList &Args,
205 const ArgList &Args)
218 void DarwinClang::AddLinkARCArgs(const ArgList &Args,
238 void DarwinClang::AddLinkRuntimeLib(const ArgList &Args,
252 void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args,
520 void DarwinClang::AddCXXStdlibLibArgs(const ArgList &Args,
566 void DarwinClang::AddCCKextLibArgs(const ArgList &Args
    [all...]
  /external/llvm/include/llvm/Option/
Arg.h 25 class ArgList;
32 /// ArgList to provide efficient iteration over all instances of a
50 /// ArgList.
113 void render(const ArgList &Args, ArgStringList &Output) const;
120 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
126 std::string getAsString(const ArgList &Args) const;
ArgList.h 1 //===--- ArgList.h - Argument List Management -------------------*- C++ -*-===//
24 class ArgList;
27 /// arg_iterator - Iterates through arguments stored inside an ArgList.
33 const ArgList &Args;
55 const ArgList &_Args, OptSpecifier _Id0 = 0U,
85 /// ArgList - Ordered collection of driver arguments.
87 /// The ArgList class manages a list of Arg instances as well as
91 class ArgList {
93 ArgList(const ArgList &) LLVM_DELETED_FUNCTION
    [all...]
OptTable.h 20 class ArgList;
128 Arg *ParseOneArg(const ArgList &Args, unsigned &Index,
Option.h 21 class ArgList;
195 Arg *accept(const ArgList &Args, unsigned &Index, unsigned ArgSize) const;
  /external/llvm/lib/Option/
ArgList.cpp 1 //===--- ArgList.cpp - Argument List Management ---------------------------===//
10 #include "llvm/Option/ArgList.h"
37 ArgList::ArgList() {
40 ArgList::~ArgList() {
43 void ArgList::append(Arg *A) {
47 void ArgList::eraseArg(OptSpecifier Id) {
58 Arg *ArgList::getLastArgNoClaim(OptSpecifier Id) const {
66 Arg *ArgList::getLastArg(OptSpecifier Id) const
    [all...]
Android.mk 5 ArgList.cpp \
Arg.cpp 13 #include "llvm/Option/ArgList.h"
64 std::string Arg::getAsString(const ArgList &Args) const {
80 void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const {
90 void Arg::render(const ArgList &Args, ArgStringList &Output) const {
  /external/clang/include/clang/Frontend/
Utils.h 27 class ArgList;
114 int getLastArgIntValue(const llvm::opt::ArgList &Args,
118 inline int getLastArgIntValue(const llvm::opt::ArgList &Args,
CompilerInvocation.h 34 class ArgList;
49 bool ParseDiagnosticArgs(DiagnosticOptions &Opts, llvm::opt::ArgList &Args,
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 22 #include "llvm/Option/ArgList.h"
33 clang::createInvocationFromCommandLine(ArrayRef<const char *> ArgList,
43 Args.insert(Args.end(), ArgList.begin(), ArgList.end());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 12 ArgList, String, syms)
19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
34 open_args = ArgList([filename.clone()], rparen=execfile_paren)
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
20 trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' >
53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
83 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_execfile.py 12 ArgList, String, syms)
19 power< 'execfile' trailer< '(' arglist< filename=any [',' globals=any [',' locals=any ] ] > ')' > >
34 open_args = ArgList([filename.clone()], rparen=execfile_paren)
fix_throw.py 14 from ..fixer_util import Name, Call, ArgList, Attr, is_tuple
20 trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' >
53 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
fix_raise.py 29 from ..fixer_util import Name, Call, Attr, ArgList, is_tuple
83 with_tb = Attr(e, Name(u'with_traceback')) + [ArgList([tb])]
  /external/chromium_org/third_party/lcov/contrib/galaxy/
conglomerate_functions.pl 24 my $ArgList = "";
27 $ArgList .= "'$Tmp' ";
30 my @Arranged = `../draw_arrangement $SCRUNCH 0 360 0 $ArgList`;

Completed in 7009 milliseconds

1 2 3