/external/clang/include/clang/Sema/ |
Template.h | 44 typedef ArrayRef<TemplateArgument> ArgList; 48 SmallVector<ArgList, 4> TemplateArgumentLists; 97 addOuterTemplateArguments(ArgList(TemplateArgs->data(), 103 void addOuterTemplateArguments(ArgList Args) { 108 const ArgList &getInnermost() const {
|
/external/clang/lib/Driver/ |
Tools.cpp | 28 #include "llvm/Option/ArgList.h" 46 static void CheckPreprocessingOptions(const Driver &D, const ArgList &Args) { 55 static void CheckCodeGenerationOptions(const Driver &D, const ArgList &Args) { 93 static void addDirectoryList(const ArgList &Args, 149 const InputInfoList &Inputs, const ArgList &Args, 195 static bool isObjCAutoRefCount(const ArgList &Args) { 200 static bool isObjCRuntimeLinked(const ArgList &Args) { 208 static void addProfileRT(const ToolChain &TC, const ArgList &Args, 238 const ArgList &Args, 475 static std::string getARMTargetCPU(const ArgList &Args [all...] |
WindowsToolChain.cpp | 18 #include "llvm/Option/ArgList.h" 37 const ArgList &Args) 280 void Windows::AddClangSystemIncludeArgs(const ArgList &DriverArgs, 338 void Windows::AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
|
Driver.cpp | 27 #include "llvm/Option/ArgList.h" 110 InputArgList *Driver::ParseArgStrings(ArrayRef<const char *> ArgList) { 119 InputArgList *Args = getOpts().ParseArgs(ArgList.begin(), ArgList.end(), 130 for (ArgList::const_iterator it = Args->begin(), ie = Args->end(); 193 for (ArgList::const_iterator it = Args.begin(), 270 Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) { 288 ParseDriverMode(ArgList.slice(1)); 295 InputArgList *Args = ParseArgStrings(ArgList.slice(1)); 480 for (ArgList::const_iterator it = C.getArgs().begin(), ie = C.getArgs().end() [all...] |
/external/llvm/lib/AsmParser/ |
LLParser.cpp | [all...] |
LLParser.h | 340 bool ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList, 362 bool ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList, bool &isVarArg);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_dict.py | 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_dict.py | 35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
|
/external/clang/lib/Frontend/ |
CompilerInvocation.cpp | 28 #include "llvm/Option/ArgList.h" 67 static unsigned getOptimizationLevel(ArgList &Args, InputKind IK, 92 static unsigned getOptimizationLevelSize(ArgList &Args) { 108 static void addWarningArgs(ArgList &Args, std::vector<std::string> &Warnings) { 131 static bool ParseAnalyzerArgs(AnalyzerOptions &Opts, ArgList &Args, 285 static bool ParseMigratorArgs(MigratorOptions &Opts, ArgList &Args) { 291 static void ParseCommentArgs(CommentOptions &Opts, ArgList &Args) { 296 static bool ParseCodeGenArgs(CodeGenOptions &Opts, ArgList &Args, InputKind IK, 509 ArgList &Args) { 521 bool clang::ParseDiagnosticArgs(DiagnosticOptions &Opts, ArgList &Args [all...] |
/external/clang/lib/Lex/ |
Preprocessor.cpp | 161 for (MacroArgs *ArgList = MacroArgCache; ArgList; ) 162 ArgList = ArgList->deallocate();
|
/external/stlport/stlport/stl/config/ |
_windows.h | 145 int WINAPI wvsprintfW(LPWSTR, LPCWSTR, va_list ArgList);
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
_windows.h | 145 int WINAPI wvsprintfW(LPWSTR, LPCWSTR, va_list ArgList);
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/ |
_windows.h | 145 int WINAPI wvsprintfW(LPWSTR, LPCWSTR, va_list ArgList);
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/ |
_windows.h | 145 int WINAPI wvsprintfW(LPWSTR, LPCWSTR, va_list ArgList);
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/ |
_windows.h | 145 int WINAPI wvsprintfW(LPWSTR, LPCWSTR, va_list ArgList);
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/ |
_windows.h | 145 int WINAPI wvsprintfW(LPWSTR, LPCWSTR, va_list ArgList);
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/ |
_windows.h | 145 int WINAPI wvsprintfW(LPWSTR, LPCWSTR, va_list ArgList);
|
/frameworks/compile/slang/ |
slang_rs_object_ref_count.cpp | 418 llvm::SmallVector<clang::Expr*, 1> ArgList; 419 ArgList.push_back(AddrRefRSVar); 424 ArgList, 816 llvm::SmallVector<clang::Expr*, 2> ArgList; 817 ArgList.push_back(new(C) clang::UnaryOperator(DstExpr, 823 ArgList.push_back(SrcExpr); 828 ArgList, [all...] |
llvm-rs-cc.cpp | 36 #include "llvm/Option/ArgList.h" 56 using llvm::opt::ArgList; 212 for (ArgList::const_iterator it = Args->begin(), ie = Args->end();
|
/external/llvm/lib/Option/ |
Option.cpp | 13 #include "llvm/Option/ArgList.h" 102 Arg *Option::accept(const ArgList &Args,
|
OptTable.cpp | 12 #include "llvm/Option/ArgList.h" 183 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
fixer_util.py | 54 def ArgList(args, lparen=LParen(), rparen=RParen()): 58 node.insert_child(1, Node(syms.arglist, args)) 63 node = Node(syms.power, [func_name, ArgList(args)]) 203 trailer< '(' arglist<node=any any*> ')' >
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/ |
fixer_util.py | 54 def ArgList(args, lparen=LParen(), rparen=RParen()): 58 node.insert_child(1, Node(syms.arglist, args)) 63 node = Node(syms.power, [func_name, ArgList(args)]) 203 trailer< '(' arglist<node=any any*> ')' >
|
/external/clang/lib/CodeGen/ |
TargetInfo.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTReaderDecl.cpp | [all...] |