Searched defs:ArgList (Results 1 - 17 of 17) sorted by relevance

/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/llvm/include/llvm/Support/
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)...);
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/python/cpython2/Lib/lib2to3/fixes/
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])]
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_dict.py35 from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot namespace
/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/clang/include/clang/Sema/
H A DTemplate.h44 typedef ArrayRef<TemplateArgument> ArgList; typedef in class:clang::MultiLevelTemplateArgumentList
48 SmallVector<ArgList, 4> TemplateArgumentLists;
97 addOuterTemplateArguments(ArgList(TemplateArgs->data(),
103 void addOuterTemplateArguments(ArgList Args) {
108 const ArgList &getInnermost() const {
/external/python/cpython2/Lib/lib2to3/
H A Dfixer_util.py54 def ArgList(args, lparen=LParen(), rparen=RParen()): function
63 node = Node(syms.power, [func_name, ArgList(args)])
/external/vixl/tools/
H A Dtest.py87 def ArgList(self, to_test): member in class:TestOption
461 opt.ArgList(args.__dict__[opt.name])
471 for o in opt.ArgList(args.__dict__[opt.name]):
/external/llvm/include/llvm/Option/
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...]
/external/clang/lib/Driver/
H A DDriver.cpp31 #include "llvm/Option/ArgList.h"
307 const ArgList &Args,
402 void Driver::setLTOMode(const llvm::opt::ArgList &Args) {
451 Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) { argument
469 ParseDriverMode(ArgList.slice(1));
476 InputArgList Args = ParseArgStrings(ArgList.slice(1));
598 static void printArgList(raw_ostream &OS, const llvm::opt::ArgList &Args) {
1714 Action *Driver::ConstructPhaseAction(Compilation &C, const ArgList &Args,
2140 static const char *MakeCLOutputFilename(const ArgList &Args, StringRef ArgValue,
2450 const ToolChain &Driver::getToolChain(const ArgList
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp1927 const TemplateArgumentList &ArgList,
1932 ArgList.data(), ArgList.size(),
1924 DeduceTemplateArguments(Sema &S, TemplateParameterList *TemplateParams, const TemplateArgumentList &ParamList, const TemplateArgumentList &ArgList, TemplateDeductionInfo &Info, SmallVectorImpl<DeducedTemplateArgument> &Deduced) argument
H A DSemaTemplate.cpp6161 const TemplateArgument *ArgList = TemplateArgs.data(); local
6170 S, TemplateNameLoc, Param, &ArgList[I], 1, I >= NumExplicit))
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp1982 TemplateArgumentList *ArgList local
1989 PS->TemplateArgs = ArgList;
2099 TemplateArgumentList *ArgList = TemplateArgumentList::CreateCopy( local
2106 PS->TemplateArgs = ArgList;
/external/fmtlib/fmt/
H A Dformat.h1449 class ArgList { class in namespace:fmt
1475 ArgList() : types_(0) {} function in class:fmt::ArgList
1477 ArgList(ULongLong types, const internal::Value *values) function in class:fmt::ArgList
1479 ArgList(ULongLong types, const internal::Arg *args) function in class:fmt::ArgList
1912 FMT_API void init(const ArgList &args);
2027 ArgList args_;
2034 const ArgList &args() const { return args_; }
2036 explicit FormatterBase(const ArgList &args) {
2158 BasicFormatter(const ArgList &args, BasicWriter<Char> &w)
2198 template <unsigned N, bool/*IsPacked*/= (N < ArgList
[all...]
/external/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp1872 FunctionArgList ArgList; local
1874 CGM.getTypes().arrangeNullaryFunction(), ArgList,

Completed in 652 milliseconds