Searched refs:callLoc (Results 1 – 5 of 5) sorted by relevance
45 .Case([&](CallSiteLoc callLoc) -> WalkResult { in walk() argument46 if (callLoc.getCallee()->walk(walkFn).wasInterrupted()) in walk()48 return callLoc.getCaller()->walk(walkFn); in walk()
404 if (auto callLoc = loc.dyn_cast<CallSiteLoc>()) in getCallSiteLoc() local405 return callLoc; in getCallSiteLoc()408 if (auto callLoc = getCallSiteLoc(subLoc)) { in getCallSiteLoc() local409 return callLoc; in getCallSiteLoc()497 if (auto callLoc = getCallSiteLoc(loc)) { in emitDiagnostic() local499 loc = callLoc->getCaller(); in emitDiagnostic()502 if ((callLoc = getCallSiteLoc(loc))) in emitDiagnostic()503 loc = callLoc->getCaller(); in emitDiagnostic()545 .Case([&](CallSiteLoc callLoc) -> Optional<Location> { in findLocToShow() argument548 return findLocToShow(callLoc.getCallee()); in findLocToShow()
144 if (auto callLoc = loc.dyn_cast<CallSiteLoc>()) { in translateLoc() local146 const auto *callerLoc = translateLoc(callLoc.getCaller(), scope, inlinedAt); in translateLoc()147 llvmLoc = translateLoc(callLoc.getCallee(), scope, callerLoc); in translateLoc()
20510 ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc, in checkUnknownAnyArg() argument20530 return PerformCopyInitialization(entity, callLoc, arg); in checkUnknownAnyArg()
12321 ExprResult checkUnknownAnyArg(SourceLocation callLoc,