reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaExprCXX.cpp
 3451   S.LookupQualifiedName(R, S.Context.getTranslationUnitDecl());
 3452   assert(!R.empty() && "implicitly declared allocation functions not found");
 3453   assert(!R.isAmbiguous() && "global allocation functions are ambiguous");
 3456   R.suppressDiagnostics();
 3459   OverloadCandidateSet Candidates(R.getNameLoc(),
 3461   for (LookupResult::iterator FnOvl = R.begin(), FnOvlEnd = R.end();
 3461   for (LookupResult::iterator FnOvl = R.begin(), FnOvlEnd = R.end();
 3484   switch (Candidates.BestViableFunction(S, R.getNameLoc(), Best)) {
 3488     assert(R.getNamingClass() == nullptr &&
 3492       S.Diag(R.getNameLoc(), diag::err_builtin_operator_new_delete_not_usual)
 3495           << R.getLookupName() << FnDecl->getSourceRange();
 3505         PartialDiagnosticAt(R.getNameLoc(),
 3507                                 << R.getLookupName() << Range),
 3513         PartialDiagnosticAt(R.getNameLoc(),
 3515                                 << R.getLookupName() << Range),
 3521         PartialDiagnosticAt(R.getNameLoc(), S.PDiag(diag::err_ovl_deleted_call)
 3522                                                 << R.getLookupName() << Range),