Searched refs:PlaceArgs (Results 1 – 4 of 4) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 1959 bool IsArray, MultiExprArg PlaceArgs, in FindAllocationFunctions() argument 1971 SmallVector<Expr*, 8> AllocArgs(1 + PlaceArgs.size()); in FindAllocationFunctions() 1980 std::copy(PlaceArgs.begin(), PlaceArgs.end(), AllocArgs.begin() + 1); in FindAllocationFunctions() 2065 bool isPlacementNew = (!PlaceArgs.empty() || OperatorNew->param_size() != 1); in FindAllocationFunctions() 2160 if (!PlaceArgs.empty() && getLangOpts().CPlusPlus11 && in FindAllocationFunctions() 2163 << SourceRange(PlaceArgs.front()->getLocStart(), in FindAllocationFunctions() 2164 PlaceArgs.back()->getLocEnd()); in FindAllocationFunctions()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 2505 bool &PassAlignment, MultiExprArg PlaceArgs, in FindAllocationFunctions() argument 2520 AllocArgs.reserve((PassAlignment ? 2 : 1) + PlaceArgs.size()); in FindAllocationFunctions() 2541 AllocArgs.insert(AllocArgs.end(), PlaceArgs.begin(), PlaceArgs.end()); in FindAllocationFunctions() 2582 if (PlaceArgs.empty()) { in FindAllocationFunctions() 2659 bool isPlacementNew = !PlaceArgs.empty() || OperatorNew->param_size() != 1 || in FindAllocationFunctions() 2769 SourceRange R = PlaceArgs.empty() in FindAllocationFunctions() 2771 : SourceRange(PlaceArgs.front()->getBeginLoc(), in FindAllocationFunctions() 2772 PlaceArgs.back()->getEndLoc()); in FindAllocationFunctions()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 4788 MultiExprArg PlaceArgs,
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 6107 bool &PassAlignment, MultiExprArg PlaceArgs,
|