Home | History | Annotate | Download | only in Sema

Lines Matching refs:LLoc

9819     SourceLocation LLoc = GetLocationForCandidate(L);
9823 if (LLoc.isInvalid()) return false;
9826 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc);
10010 SourceLocation LLoc = GetLocationForCandidate(L);
10014 if (LLoc.isInvalid())
10019 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc);
11709 Sema::CreateOverloadedArraySubscriptExpr(SourceLocation LLoc,
11722 DeclarationNameInfo OpNameInfo(OpName, LLoc);
11723 OpNameInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc));
11744 OverloadCandidateSet CandidateSet(LLoc, OverloadCandidateSet::CSK_Operator);
11749 AddMemberOperatorCandidates(OO_Subscript, LLoc, Args, CandidateSet);
11752 AddBuiltinOperatorCandidates(OO_Subscript, LLoc, Args, CandidateSet);
11758 switch (CandidateSet.BestViableFunction(*this, LLoc, Best)) {
11767 CheckMemberOperatorAccess(LLoc, Args[0], Args[1], Best->FoundDecl);
11791 DeclarationNameInfo OpLocInfo(OpName, LLoc);
11792 OpLocInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc));
11812 if (CheckCallReturnType(FnDecl->getReturnType(), LLoc, TheCall, FnDecl))
11840 Diag(LLoc, diag::err_ovl_no_oper)
11844 Diag(LLoc, diag::err_ovl_no_viable_subscript)
11848 "[]", LLoc);
11853 Diag(LLoc, diag::err_ovl_ambiguous_oper_binary)
11858 "[]", LLoc);
11862 Diag(LLoc, diag::err_ovl_deleted_oper)
11867 "[]", LLoc);
11872 return CreateBuiltinArraySubscriptExpr(Args[0], LLoc, Args[1], RLoc);