Lines Matching refs:AtLoc

82 ExprResult Sema::BuildObjCStringLiteral(SourceLocation AtLoc, StringLiteral *S){  in BuildObjCStringLiteral()  argument
103 NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc, in BuildObjCStringLiteral()
118 NamedDecl *IF = LookupSingleName(TUScope, NSIdent, AtLoc, in BuildObjCStringLiteral()
143 return new (Context) ObjCStringLiteral(S, Ty, AtLoc); in BuildObjCStringLiteral()
317 ExprResult Sema::BuildObjCNumericLiteral(SourceLocation AtLoc, Expr *Number) { in BuildObjCNumericLiteral() argument
346 ObjCMethodDecl *Method = getNSNumberFactoryMethod(*this, AtLoc, NumberType, in BuildObjCNumericLiteral()
365 SourceRange(AtLoc, NR.getEnd()))); in BuildObjCNumericLiteral()
368 ExprResult Sema::ActOnObjCBoolLiteral(SourceLocation AtLoc, in ActOnObjCBoolLiteral() argument
382 return BuildObjCNumericLiteral(AtLoc, Inner.get()); in ActOnObjCBoolLiteral()
1128 ExprResult Sema::BuildObjCEncodeExpression(SourceLocation AtLoc, in BuildObjCEncodeExpression() argument
1138 if (RequireCompleteType(AtLoc, EncodedType, in BuildObjCEncodeExpression()
1147 Diag(AtLoc, diag::warn_incomplete_encoded_type) in BuildObjCEncodeExpression()
1155 return new (Context) ObjCEncodeExpr(StrTy, EncodedTypeInfo, AtLoc, RParenLoc); in BuildObjCEncodeExpression()
1158 ExprResult Sema::ParseObjCEncodeExpression(SourceLocation AtLoc, in ParseObjCEncodeExpression() argument
1170 return BuildObjCEncodeExpression(AtLoc, TInfo, RParenLoc); in ParseObjCEncodeExpression()
1174 SourceLocation AtLoc, in HelperToDiagnoseMismatchedMethodsInGlobalPool() argument
1191 S.Diag(AtLoc, diag::warn_multiple_selectors) in HelperToDiagnoseMismatchedMethodsInGlobalPool()
1204 static void DiagnoseMismatchedSelectors(Sema &S, SourceLocation AtLoc, in DiagnoseMismatchedSelectors() argument
1217 if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc, in DiagnoseMismatchedSelectors()
1223 if (HelperToDiagnoseMismatchedMethodsInGlobalPool(S, AtLoc, LParenLoc, RParenLoc, in DiagnoseMismatchedSelectors()
1292 SourceLocation AtLoc, in ParseObjCSelectorExpression() argument
1314 DiagnoseMismatchedSelectors(*this, AtLoc, Method, LParenLoc, RParenLoc, in ParseObjCSelectorExpression()
1323 Diag(AtLoc, diag::err_direct_selector_expression) in ParseObjCSelectorExpression()
1333 Diag(AtLoc, diag::warn_potentially_direct_selector_expression) << Sel; in ParseObjCSelectorExpression()
1340 Diag(AtLoc, diag::warn_strict_potentially_direct_selector_expression) in ParseObjCSelectorExpression()
1352 ReferencedSelectors.insert(std::make_pair(Sel, AtLoc)); in ParseObjCSelectorExpression()
1363 Diag(AtLoc, diag::err_arc_illegal_selector) << in ParseObjCSelectorExpression()
1381 return new (Context) ObjCSelectorExpr(Ty, Sel, AtLoc, RParenLoc); in ParseObjCSelectorExpression()
1385 SourceLocation AtLoc, in ParseObjCProtocolExpression() argument
1409 return new (Context) ObjCProtocolExpr(Ty, PDecl, AtLoc, ProtoIdLoc, RParenLoc); in ParseObjCProtocolExpression()