/external/clang/lib/ASTMatchers/Dynamic/ |
Diagnostics.cpp | 22 return ArgStream(&data.Args); 75 return ArgStream(&Last.Messages.back().Args); 131 void formatErrorString(StringRef FormatString, ArrayRef<std::string> Args, 142 if (Index < Args.size()) { 143 OS << Args[Index]; 161 formatErrorString(contextTypeToFormatString(Frame.Type), Frame.Args, OS); 169 formatErrorString(errorTypeToFormatString(Message.Type), Message.Args, OS);
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
p5.cpp | 403 template<class ... Args> void f(Args...); 404 template<class ... Args> void h(Args...); 406 template<class ... Args> 407 void g(Args ... args) { 408 f(const_cast<const Args*>(&args)...); // OK: "Args" and "args" are expanded within f [all...] |
fixed-expansion.cpp | 70 template <typename ...Args> tuple<Args...> &foo(Foo<Args...>);
|
p4.cpp | 63 template<typename ...Args> struct Var { 64 Var(const Args &...args, int *) { Foo(args...); } 85 template<typename T, typename... Args> void f(Args... args) { 87 constexpr T t(args...);
|
/external/llvm/examples/Kaleidoscope/Chapter2/ |
toy.cpp | 106 std::vector<ExprAST*> Args; 108 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 109 : Callee(callee), Args(args) {} 117 std::vector<std::string> Args; 119 PrototypeAST(const std::string &name, const std::vector<std::string> &args) 120 : Name(name), Args(args) {} 177 std::vector<ExprAST*> Args; 182 Args.push_back(Arg) [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
ProfilingUtils.cpp | 41 std::vector<Value*> Args(4); 42 Args[0] = Constant::getNullValue(Type::getInt32Ty(Context)); 43 Args[1] = Constant::getNullValue(ArgVTy); 54 Args[2] = ConstantExpr::getGetElementPtr(Array, GEPIndices); 60 Args[2] = ConstantPointerNull::get(UIntPtr); 62 Args[3] = ConstantInt::get(Type::getInt32Ty(Context), NumElements); 64 CallInst *InitCall = CallInst::Create(InitFn, Args, "newargc", InsertPos);
|
/external/llvm/unittests/Option/ |
OptionParsingTest.cpp | 56 const char *Args[] = { 71 OwningPtr<InputArgList> AL(T.ParseArgs(Args, array_endof(Args), MAI, MAC)); 117 AL.reset(T.ParseArgs(Args, array_endof(Args), MAI, MAC, 125 AL.reset(T.ParseArgs(Args, array_endof(Args), MAI, MAC,
|
/external/clang/include/clang/Driver/ |
Compilation.h | 42 llvm::opt::InputArgList *Args; 74 llvm::opt::InputArgList *Args, 82 const llvm::opt::InputArgList &getInputArgs() const { return *Args; }
|
/external/llvm/examples/Fibonacci/ |
fibonacci.cpp | 129 std::vector<GenericValue> Args(1); 130 Args[0].IntVal = APInt(32, n); 131 GenericValue GV = EE->runFunction(FibF, Args);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/allocator.traits/allocator.traits.members/ |
construct.pass.cpp | 15 // template <class Ptr, class... Args> 16 // static void construct(allocator_type& a, Ptr p, Args&&... args); 40 template <class U, class ...Args> 41 void construct(U* p, Args&& ...args) 44 ::new ((void*)p) U(std::forward<Args>(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...] |
/external/llvm/examples/Kaleidoscope/Chapter6/ |
toy.cpp | 150 std::vector<ExprAST*> Args; 152 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 153 : Callee(callee), Args(args) {} 182 std::vector<std::string> Args; 186 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 188 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {} 190 bool isUnaryOp() const { return isOperator && Args.size() == 1; } 191 bool isBinaryOp() const { return isOperator && Args.size() == 2; [all...] |
/external/clang/utils/TableGen/ |
ClangAttrEmitter.cpp | 753 static void writePrettyPrintFunction(Record &R, std::vector<Argument*> &Args, 807 if (Args.size()) OS << "("; 811 for (std::vector<Argument*>::const_iterator I = Args.begin(), 812 E = Args.end(); I != E; ++ I) { 813 if (I != Args.begin()) OS << ", "; 818 if (Args.size()) OS << ")"; [all...] |
/external/clang/lib/AST/ |
DeclTemplate.cpp | 166 const TemplateArgument *Args, unsigned NumArgs, 170 EntryType::Profile(ID,Args,NumArgs, getASTContext()); 179 TemplateArgument *Args) { 212 *Args++ = Arg; 266 FunctionTemplateDecl::findSpecialization(const TemplateArgument *Args, 268 return findSpecializationImpl(getSpecializations(), Args, NumArgs, InsertPos); 352 ClassTemplateDecl::findSpecialization(const TemplateArgument *Args, 354 return findSpecializationImpl(getSpecializations(), Args, NumArgs, InsertPos); 372 ClassTemplateDecl::findPartialSpecialization(const TemplateArgument *Args, 375 return findSpecializationImpl(getPartialSpecializations(), Args, NumArgs [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
logtesting.py | 51 Args: 107 Args: 141 Args: 196 Args: 254 Args:
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
Parser.h | 75 /// \param Args The argument list for the matcher. 83 ArrayRef<ParserValue> Args,
|
/external/llvm/lib/Option/ |
OptTable.cpp | 183 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index, 187 const char *Str = Args.getArgString(Index); 226 if (Arg *A = Opt.accept(Args, Index, ArgSize)) 248 InputArgList *Args = new InputArgList(ArgBegin, ArgEnd); 250 // FIXME: Handle '@' args (or at least error on them). 256 StringRef Str = Args->getArgString(Index); 268 Args->append(new Arg(getOption(TheInputOptionID), 269 Args->getArgString(Index), Index, 270 Args->getArgString(Index))); 277 Arg *A = ParseOneArg(*Args, Index, FlagsToInclude, FlagsToExclude) [all...] |
/external/chromium_org/chrome/test/functional/ispy/common/ |
ispy_utils.py | 26 Args: 39 Args: 56 Args: 65 Args: 75 Args: 89 Args: 102 Args: 122 Args: 154 Args: 172 Args [all...] |
/external/chromium_org/chrome/test/pyautolib/ |
chrome_driver_factory.py | 26 Args: 39 Args:
|
/external/clang/test/CXX/class.derived/class.virtual/ |
p3-0x.cpp | 40 template<typename... Args> 42 virtual void f(Args...) override; // expected-error {{'f' marked 'override' but does not override any member functions}}
|
/external/llvm/include/llvm/ADT/ |
VariadicFunction.h | 69 /// ResultT FooImpl(ArrayRef<const ArgT *> Args) { 70 /// // 'Args[i]' is a pointer to the i-th argument passed to Foo(). 97 /// ArrayRef<const ArgT *> Args) { ... } 113 const ArgT *const Args[] = { LLVM_COMMA_JOIN ## N(&A) }; \ 114 return Func(makeArrayRef(Args)); \ 160 const ArgT *const Args[] = { LLVM_COMMA_JOIN ## N(&A) }; \ 161 return Func(P0, makeArrayRef(Args)); \ 208 const ArgT *const Args[] = { LLVM_COMMA_JOIN ## N(&A) }; \ 209 return Func(P0, P1, makeArrayRef(Args)); \ 257 const ArgT *const Args[] = { LLVM_COMMA_JOIN ## N(&A) }; [all...] |
/external/llvm/lib/IR/ |
Module.cpp | 184 va_list Args; 185 va_start(Args, RetTy); 189 while (Type *ArgTy = va_arg(Args, Type*)) 192 va_end(Args); 202 va_list Args; 203 va_start(Args, RetTy); 207 while (Type *ArgTy = va_arg(Args, Type*)) 210 va_end(Args);
|
/external/openfst/src/include/fst/script/ |
script-impl.h | 40 // 1) A way to bundle the args that your new Foo operation will take, as 44 // typedef args::Package<const FstClass &, 47 // Note: this package of args is going to be passed by non-const pointer. 49 // 2) A function template that is able to perform Foo, given the args and 53 // void Foo(FooArgs *args) { 55 // const Fst<Arc> &ifst = args->arg1.GetFst<Arc>(); 56 // MutableFst<Arc> *ofst = args->arg2->GetMutableFst<Arc>(); 67 // // package the args 68 // FooArgs args(ifst, ofst); 70 // Apply<Operation<FooArgs> >("Foo", ifst->ArcType(), &args); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
base.hpp | 142 template<typename F, typename Its, typename... Args> 144 step(F op, S state, Its its, Args... args) { 146 op, state, its, *(std::get<N>(its)++), args...); 152 template<typename F, typename Its, typename... Args> 154 step(F op, S state, Its its, Args... args) { 155 return op(state, *(std::get<0>(its)++), args...); 163 template<typename F, typename Its, typename... Args> 165 step(F op, __empty state, Its its, Args... args) [all...] |
/external/compiler-rt/lib/ubsan/ |
ubsan_diag.cc | 95 static void renderText(const char *Message, const Diag::Arg *Args) { 106 const Diag::Arg &A = Args[*++Msg - '0']; 161 const Diag::Arg *Args) { 217 renderText(InRange->getText(), Args); 256 renderText(Message, Args); 262 NumRanges, Args);
|