/external/skia/include/private/ |
SkTArray.h | 161 template<class... Args> T& emplace_back(Args&&... args) { 163 return *new (newT) T(std::forward<Args>(args)...);
|
/external/clang/lib/Sema/ |
SemaTemplateDeduction.cpp | 109 const TemplateArgument *Args, unsigned NumArgs, 748 /// \param Args The list of argument types 750 /// \param NumArgs The number of types in \c Args 770 const QualType *Args, unsigned NumArgs, 778 !(NumArgs && isa<PackExpansionType>(Args[NumArgs - 1]))) 798 if (isa<PackExpansionType>(Args[ArgIdx])) { 808 Params[ParamIdx], Args[ArgIdx], [all...] |
SemaTemplateInstantiate.cpp | [all...] |
/external/clang/include/clang/ASTMatchers/Dynamic/ |
VariantValue.h | 152 std::vector<VariantMatcher> Args);
|
/external/clang/include/clang/Sema/ |
Initialization.h | [all...] |
Template.h | 103 void addOuterTemplateArguments(ArgList Args) { 104 TemplateArgumentLists.push_back(Args);
|
/external/clang/lib/ASTMatchers/Dynamic/ |
Registry.cpp | 531 ArrayRef<ParserValue> Args, 533 return Ctor->create(NameRange, Args, Error); 540 ArrayRef<ParserValue> Args, 542 VariantMatcher Out = constructMatcher(Ctor, NameRange, Args, Error);
|
/external/clang/utils/analyzer/ |
SATestBuild.py | 686 Args = Parser.parse_args() 690 Strictness = Args.strictness 691 if Args.regenerate: 693 elif Args.update_reference:
|
/external/llvm/lib/Option/ |
ArgList.cpp | 23 for (; Current != Args.end(); ++Current) { 38 Args.push_back(A); 42 Args.erase(std::remove_if(begin(), end(), 264 for (const Arg *Arg : Args) {
|
/external/v8/src/interpreter/ |
bytecode-traits.h | 32 template <OperandType... Args>
|
/external/clang/lib/CodeGen/ |
CGException.cpp | [all...] |
CGCall.cpp | 260 CodeGenTypes::arrangeCXXConstructorCall(const CallArgList &args, 266 for (const auto &Arg : args) 405 const CallArgList &args, 409 assert(args.size() >= numExtraRequiredArgs); 425 .isNoProtoCallVariadic(args, 427 required = RequiredArgs(args.size()); 432 for (const auto &arg : args) 444 CodeGenTypes::arrangeFreeFunctionCall(const CallArgList &args, 447 return arrangeFreeFunctionLikeCall(*this, CGM, args, fnType, 454 CodeGenTypes::arrangeBlockFunctionCall(const CallArgList &args, [all...] |
/art/runtime/base/ |
dchecked_vector.h | 186 template <typename... Args> 187 iterator emplace(const_iterator position, Args&&... args) { 189 Base::emplace(position, std::forward(args...));
|
/dalvik/dx/src/com/android/dx/command/dump/ |
BlockDumper.java | 78 * @param args commandline parsedArgs 81 String filePath, boolean rop, Args args) { 83 rop, args); 92 boolean rop, Args args) { 93 super(bytes, out, filePath, args); 99 this.optimize = args.optimize; 146 return args.method == null || args.method.equals(name) [all...] |
/external/autotest/server/ |
kvm.py | 158 Args: 378 Args: 458 Args:
|
/external/bison/src/ |
getargs.c | 93 * \param args comma separated list of effective subarguments to decode. 103 int all, int *flags, char *args) 105 if (args) 107 args = strtok (args, ","); 108 while (args) 110 int no = strncmp (args, "no-", 3) == 0 ? 3 : 0; 111 int value = XARGMATCH (option, args + no, keys, values); 126 args = strtok (NULL, ","); 136 * \param Args the effective sub arguments to decode [all...] |
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
hashing_helper.py | 102 Args: 120 Args: 143 Args: 169 Args: 186 Args: 208 Args: 223 Args: 237 Args: 254 Args: 269 Args [all...] |
/external/clang/include/clang/AST/ |
ExprObjC.h | 881 assert((Num >> NumArgsBitWidth) == 0 && "Num of args is out of range!"); [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
GCOVProfiling.cpp | 757 Type *Args[] = { 762 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false); 769 Type *Args[] = { 773 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false); 778 Type *Args[] = { 785 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false); 790 Type *Args[] = { 794 FunctionType *FTy = FunctionType::get(Type::getVoidTy(*Ctx), Args, false); [all...] |
/external/clang/lib/AST/ |
CommentSema.cpp | 63 ArrayRef<BlockCommandComment::Argument> Args) { 64 Command->setArgs(Args); 369 ArrayRef<InlineCommandComment::Argument> Args; 376 Args); 409 ArrayRef<InlineCommandComment::Argument> Args; 413 Args); [all...] |
/external/llvm/lib/IR/ |
AutoUpgrade.cpp | 79 Type* args[2] = { local 86 FunctionType* fType = FunctionType::get(F->getReturnType(), args, false); 714 SmallVector<Value *, 4> Args(CI->arg_operands().begin(), 716 CI->replaceAllUsesWith(Builder.CreateCall(NewFn, Args)); 724 "Mismatch between function args and call args"); [all...] |
/external/llvm/unittests/IR/ |
InstructionsTest.cpp | 73 Value *Args[] = {ConstantInt::get(Type::getInt8Ty(Ctx), 20), 76 std::unique_ptr<CallInst> Call(CallInst::Create(F, Args)); 91 Value *Args[] = {ConstantInt::get(Type::getInt8Ty(Ctx), 20), 94 std::unique_ptr<InvokeInst> Invoke(InvokeInst::Create(F, BB1, BB2, Args)); 494 Value *Args[] = { 499 std::unique_ptr<CallInst> Call(CallInst::Create(Callee, Args, "result"));
|
/art/runtime/gc/space/ |
image_space.cc | 722 template<typename... Args> 723 explicit FixupObjectAdapter(Args... args) : FixupVisitor(args...) {} 733 template<typename... Args> 734 explicit FixupRootVisitor(Args... args) : FixupVisitor(args...) {} 755 template<typename... Args> 758 Args... args [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
RetainCountChecker.cpp | 384 /// Args - a map of (index, ArgEffect) pairs, where index 386 /// populated; arguments with no entry in Args use 'DefaultArgEffect'. 387 ArgEffects Args; 390 /// do not have an entry in Args. 404 : Args(A), DefaultArgEffect(defaultEff), Receiver(ReceiverEff), Ret(R) {} 409 if (const ArgEffect *AE = Args.lookup(idx)) 416 Args = af.add(Args, idx, e); 442 return Args == Other.Args && DefaultArgEffect == Other.DefaultArgEffect & [all...] |
/external/llvm/lib/Target/MSP430/ |
MSP430ISelLowering.cpp | 251 static void ParseFunctionArgs(const SmallVectorImpl<ArgT> &Args, 254 for (unsigned i = 0, e = Args.size(); i != e; i++) { 255 if (CurrentArgIndex == Args[i].OrigArgIndex) { 281 const SmallVectorImpl<ArgT> &Args) { 288 AnalyzeVarArgs(State, Args); 293 ParseFunctionArgs(Args, ArgsParts); 300 MVT ArgVT = Args[ValNo].VT; 301 ISD::ArgFlagsTy ArgFlags = Args[ValNo].Flags; 357 const SmallVectorImpl<ArgT> &Args) { 358 AnalyzeRetResult(State, Args); [all...] |