Lines Matching refs:AtLoc
83 ExprResult Sema::BuildObjCStringLiteral(SourceLocation AtLoc, StringLiteral *S){ in BuildObjCStringLiteral() argument
104 NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc, in BuildObjCStringLiteral()
119 NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc, in BuildObjCStringLiteral()
144 return new (Context) ObjCStringLiteral(S, Ty, AtLoc); in BuildObjCStringLiteral()
262 ExprResult Sema::BuildObjCNumericLiteral(SourceLocation AtLoc, Expr *Number) { in BuildObjCNumericLiteral() argument
290 ObjCMethodDecl *Method = getNSNumberFactoryMethod(*this, AtLoc, NumberType, in BuildObjCNumericLiteral()
309 SourceRange(AtLoc, NR.getEnd()))); in BuildObjCNumericLiteral()
312 ExprResult Sema::ActOnObjCBoolLiteral(SourceLocation AtLoc, in ActOnObjCBoolLiteral() argument
326 return BuildObjCNumericLiteral(AtLoc, Inner.get()); in ActOnObjCBoolLiteral()
933 ExprResult Sema::BuildObjCEncodeExpression(SourceLocation AtLoc, in BuildObjCEncodeExpression() argument
943 if (RequireCompleteType(AtLoc, EncodedType, in BuildObjCEncodeExpression()
952 Diag(AtLoc, diag::warn_incomplete_encoded_type) in BuildObjCEncodeExpression()
965 return new (Context) ObjCEncodeExpr(StrTy, EncodedTypeInfo, AtLoc, RParenLoc); in BuildObjCEncodeExpression()
968 ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc, in ParseObjCEncodeExpression() argument
980 return BuildObjCEncodeExpression(AtLoc, TInfo, RParenLoc); in ParseObjCEncodeExpression()
984 SourceLocation AtLoc, in HelperToDiagnoseMismatchedMethodsInGlobalPool() argument
1001 S.Diag(AtLoc, diag::warning_multiple_selectors) in HelperToDiagnoseMismatchedMethodsInGlobalPool()
1014 static void DiagnoseMismatchedSelectors(Sema &S, SourceLocation AtLoc, in DiagnoseMismatchedSelectors() argument
1027 if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc, in DiagnoseMismatchedSelectors()
1033 if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc, in DiagnoseMismatchedSelectors()
1040 SourceLocation AtLoc, in ParseObjCSelectorExpression() argument
1062 DiagnoseMismatchedSelectors(*this, AtLoc, Method, LParenLoc, RParenLoc, in ParseObjCSelectorExpression()
1068 ReferencedSelectors.insert(std::make_pair(Sel, AtLoc)); in ParseObjCSelectorExpression()
1079 Diag(AtLoc, diag::err_arc_illegal_selector) << in ParseObjCSelectorExpression()
1097 return new (Context) ObjCSelectorExpr(Ty, Sel, AtLoc, RParenLoc); in ParseObjCSelectorExpression()
1101 SourceLocation AtLoc, in ParseObjCProtocolExpression() argument
1118 return new (Context) ObjCProtocolExpr(Ty, PDecl, AtLoc, ProtoIdLoc, RParenLoc); in ParseObjCProtocolExpression()