Lines Matching refs:LLoc

11470     SourceLocation LLoc = GetLocationForCandidate(L);  in operator ()()  local
11474 if (LLoc.isInvalid()) return false; in operator ()()
11477 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc); in operator ()()
11728 SourceLocation LLoc = GetLocationForCandidate(L); in operator ()() local
11732 if (LLoc.isInvalid()) in operator ()()
11737 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc); in operator ()()
13973 Sema::CreateOverloadedArraySubscriptExpr(SourceLocation LLoc, in CreateOverloadedArraySubscriptExpr() argument
13986 DeclarationNameInfo OpNameInfo(OpName, LLoc); in CreateOverloadedArraySubscriptExpr()
13987 OpNameInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc)); in CreateOverloadedArraySubscriptExpr()
14006 OverloadCandidateSet CandidateSet(LLoc, OverloadCandidateSet::CSK_Operator); in CreateOverloadedArraySubscriptExpr()
14011 AddMemberOperatorCandidates(OO_Subscript, LLoc, Args, CandidateSet); in CreateOverloadedArraySubscriptExpr()
14014 AddBuiltinOperatorCandidates(OO_Subscript, LLoc, Args, CandidateSet); in CreateOverloadedArraySubscriptExpr()
14020 switch (CandidateSet.BestViableFunction(*this, LLoc, Best)) { in CreateOverloadedArraySubscriptExpr()
14029 CheckMemberOperatorAccess(LLoc, Args[0], Args[1], Best->FoundDecl); in CreateOverloadedArraySubscriptExpr()
14053 DeclarationNameInfo OpLocInfo(OpName, LLoc); in CreateOverloadedArraySubscriptExpr()
14054 OpLocInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc)); in CreateOverloadedArraySubscriptExpr()
14072 if (CheckCallReturnType(FnDecl->getReturnType(), LLoc, TheCall, FnDecl)) in CreateOverloadedArraySubscriptExpr()
14110 CandidateSet.NoteCandidates(PartialDiagnosticAt(LLoc, PD), *this, in CreateOverloadedArraySubscriptExpr()
14111 OCD_AllCandidates, Args, "[]", LLoc); in CreateOverloadedArraySubscriptExpr()
14117 PartialDiagnosticAt(LLoc, PDiag(diag::err_ovl_ambiguous_oper_binary) in CreateOverloadedArraySubscriptExpr()
14122 *this, OCD_AmbiguousCandidates, Args, "[]", LLoc); in CreateOverloadedArraySubscriptExpr()
14127 PartialDiagnosticAt(LLoc, PDiag(diag::err_ovl_deleted_oper) in CreateOverloadedArraySubscriptExpr()
14130 *this, OCD_AllCandidates, Args, "[]", LLoc); in CreateOverloadedArraySubscriptExpr()
14135 return CreateBuiltinArraySubscriptExpr(Args[0], LLoc, Args[1], RLoc); in CreateOverloadedArraySubscriptExpr()