Searched defs:AllArgs (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp10815 SmallVector<Expr *, 8> AllArgs; local
10819 AllArgs,
10822 ConvertedArgs.append(AllArgs.begin(), AllArgs.end());
10824 DiagnoseSentinelCalls(Constructor, Loc, AllArgs);
10827 llvm::makeArrayRef<const Expr *>(AllArgs.data(),
10828 AllArgs.size()),
H A DSemaExpr.cpp4229 SmallVector<Expr *, 8> AllArgs; local
4233 Proto, 0, Args, AllArgs, CallType);
4236 unsigned TotalNumArgs = AllArgs.size();
4238 Call->setArg(i, AllArgs[i]);
4246 SmallVectorImpl<Expr *> &AllArgs,
4312 AllArgs.push_back(Arg);
4325 AllArgs.push_back(arg.get());
4334 AllArgs.push_back(Arg.get());
4243 GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl, const FunctionProtoType *Proto, unsigned FirstParam, ArrayRef<Expr *> Args, SmallVectorImpl<Expr *> &AllArgs, VariadicCallType CallType, bool AllowExplicit, bool IsListInitialization) argument

Completed in 257 milliseconds