Lines Matching refs:LLoc

11487     SourceLocation LLoc = GetLocationForCandidate(L);  in operator ()()  local
11491 if (LLoc.isInvalid()) return false; in operator ()()
11494 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc); in operator ()()
11746 SourceLocation LLoc = GetLocationForCandidate(L); in operator ()() local
11750 if (LLoc.isInvalid()) in operator ()()
11755 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc); in operator ()()
13993 Sema::CreateOverloadedArraySubscriptExpr(SourceLocation LLoc, in CreateOverloadedArraySubscriptExpr() argument
14006 DeclarationNameInfo OpNameInfo(OpName, LLoc); in CreateOverloadedArraySubscriptExpr()
14007 OpNameInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc)); in CreateOverloadedArraySubscriptExpr()
14026 OverloadCandidateSet CandidateSet(LLoc, OverloadCandidateSet::CSK_Operator); in CreateOverloadedArraySubscriptExpr()
14031 AddMemberOperatorCandidates(OO_Subscript, LLoc, Args, CandidateSet); in CreateOverloadedArraySubscriptExpr()
14034 AddBuiltinOperatorCandidates(OO_Subscript, LLoc, Args, CandidateSet); in CreateOverloadedArraySubscriptExpr()
14040 switch (CandidateSet.BestViableFunction(*this, LLoc, Best)) { in CreateOverloadedArraySubscriptExpr()
14049 CheckMemberOperatorAccess(LLoc, Args[0], Args[1], Best->FoundDecl); in CreateOverloadedArraySubscriptExpr()
14073 DeclarationNameInfo OpLocInfo(OpName, LLoc); in CreateOverloadedArraySubscriptExpr()
14074 OpLocInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc)); in CreateOverloadedArraySubscriptExpr()
14092 if (CheckCallReturnType(FnDecl->getReturnType(), LLoc, TheCall, FnDecl)) in CreateOverloadedArraySubscriptExpr()
14130 CandidateSet.NoteCandidates(PartialDiagnosticAt(LLoc, PD), *this, in CreateOverloadedArraySubscriptExpr()
14131 OCD_AllCandidates, Args, "[]", LLoc); in CreateOverloadedArraySubscriptExpr()
14137 PartialDiagnosticAt(LLoc, PDiag(diag::err_ovl_ambiguous_oper_binary) in CreateOverloadedArraySubscriptExpr()
14142 *this, OCD_AmbiguousCandidates, Args, "[]", LLoc); in CreateOverloadedArraySubscriptExpr()
14147 PartialDiagnosticAt(LLoc, PDiag(diag::err_ovl_deleted_oper) in CreateOverloadedArraySubscriptExpr()
14150 *this, OCD_AllCandidates, Args, "[]", LLoc); in CreateOverloadedArraySubscriptExpr()
14155 return CreateBuiltinArraySubscriptExpr(Args[0], LLoc, Args[1], RLoc); in CreateOverloadedArraySubscriptExpr()