Home | History | Annotate | Download | only in Sema

Lines Matching defs:LLoc

8979     SourceLocation LLoc = GetLocationForCandidate(L);
8983 if (LLoc.isInvalid()) return false;
8986 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc);
9170 SourceLocation LLoc = GetLocationForCandidate(L);
9174 if (LLoc.isInvalid())
9179 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc);
10764 Sema::CreateOverloadedArraySubscriptExpr(SourceLocation LLoc,
10777 DeclarationNameInfo OpNameInfo(OpName, LLoc);
10778 OpNameInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc));
10801 OverloadCandidateSet CandidateSet(LLoc);
10806 AddMemberOperatorCandidates(OO_Subscript, LLoc, Args, CandidateSet);
10809 AddBuiltinOperatorCandidates(OO_Subscript, LLoc, Args, CandidateSet);
10815 switch (CandidateSet.BestViableFunction(*this, LLoc, Best)) {
10824 CheckMemberOperatorAccess(LLoc, Args[0], Args[1], Best->FoundDecl);
10853 DeclarationNameInfo OpLocInfo(OpName, LLoc);
10854 OpLocInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc));
10869 if (CheckCallReturnType(FnDecl->getResultType(), LLoc, TheCall,
10898 Diag(LLoc, diag::err_ovl_no_oper)
10902 Diag(LLoc, diag::err_ovl_no_viable_subscript)
10906 "[]", LLoc);
10911 Diag(LLoc, diag::err_ovl_ambiguous_oper_binary)
10916 "[]", LLoc);
10920 Diag(LLoc, diag::err_ovl_deleted_oper)
10925 "[]", LLoc);
10930 return CreateBuiltinArraySubscriptExpr(Args[0], LLoc, Args[1], RLoc);