/external/clang/lib/Sema/ |
D | SemaExprObjC.cpp | 533 SourceLocation SuperLoc, QualType SuperType, in HandleExprPropertyRefExpr() argument 571 SuperLoc, SuperType)); in HandleExprPropertyRefExpr() 593 SuperLoc, SuperType)); in HandleExprPropertyRefExpr() 668 SuperLoc, SuperType)); in HandleExprPropertyRefExpr() 690 SuperLoc, SuperType, Super); in HandleExprPropertyRefExpr() 947 SourceLocation SuperLoc, in ActOnSuperMessage() argument 956 Diag(SuperLoc, diag::err_invalid_receiver_to_message_super); in ActOnSuperMessage() 962 Diag(SuperLoc, diag::error_no_super_class_message) in ActOnSuperMessage() 970 Diag(SuperLoc, diag::error_root_class_cannot_use_super) in ActOnSuperMessage() 982 return BuildInstanceMessage(0, SuperTy, SuperLoc, in ActOnSuperMessage() [all …]
|
D | SemaExceptionSpec.cpp | 472 const FunctionProtoType *Superset, SourceLocation SuperLoc, in CheckExceptionSpecSubset() argument 483 SubLoc = SuperLoc; in CheckExceptionSpecSubset() 489 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc); in CheckExceptionSpecSubset() 504 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc); in CheckExceptionSpecSubset() 515 Diag(SuperLoc, NoteID); in CheckExceptionSpecSubset() 528 Diag(SuperLoc, NoteID); in CheckExceptionSpecSubset() 534 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc); in CheckExceptionSpecSubset() 540 Diag(SuperLoc, NoteID); in CheckExceptionSpecSubset() 626 Diag(SuperLoc, NoteID); in CheckExceptionSpecSubset() 631 return CheckParamExceptionSpec(NoteID, Superset, SuperLoc, Subset, SubLoc); in CheckExceptionSpecSubset()
|
D | SemaDeclObjC.cpp | 392 IdentifierInfo *SuperName, SourceLocation SuperLoc, in ActOnStartClassInterface() argument 446 PrevDecl = LookupSingleName(TUScope, SuperName, SuperLoc, in ActOnStartClassInterface() 452 DeclarationNameInfo(SuperName, SuperLoc), LookupOrdinaryName, TUScope, in ActOnStartClassInterface() 455 Diag(SuperLoc, diag::err_undef_superclass_suggest) in ActOnStartClassInterface() 463 Diag(SuperLoc, diag::err_recursive_superclass) in ActOnStartClassInterface() 472 (void)DiagnoseUseOfDecl(SuperClassDecl, SuperLoc); in ActOnStartClassInterface() 492 Diag(SuperLoc, diag::err_redefinition_different_kind) << SuperName; in ActOnStartClassInterface() 499 Diag(SuperLoc, diag::err_undef_superclass) in ActOnStartClassInterface() 502 Diag(SuperLoc, diag::err_forward_superclass) in ActOnStartClassInterface() 510 IDecl->setSuperClassLoc(SuperLoc); in ActOnStartClassInterface() [all …]
|
D | SemaCodeComplete.cpp | 4776 void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc, in CodeCompleteObjCSuperMessage() argument 4807 NamedDecl *ND = LookupSingleName(S, Super, SuperLoc, in CodeCompleteObjCSuperMessage() 4821 id.setIdentifier(Super, SuperLoc); in CodeCompleteObjCSuperMessage()
|
/external/clang/include/clang/AST/ |
D | ExprObjC.h | 282 SourceLocation SuperLoc, QualType SuperTy) in ObjCPropertyRefExpr() argument 285 IdLoc(IdLoc), ReceiverLoc(SuperLoc), Receiver(SuperTy.getTypePtr()) { in ObjCPropertyRefExpr() 470 SourceLocation SuperLoc; variable 490 SourceLocation SuperLoc, 569 SourceLocation SuperLoc, 723 return SuperLoc; in getSuperLoc() 754 SuperLoc = Loc; in setSuper()
|
/external/clang/lib/Parse/ |
D | ParseObjc.cpp | 2104 SourceLocation SuperLoc, in ParseObjCMessageExpressionBody() argument 2110 if (SuperLoc.isValid()) in ParseObjCMessageExpressionBody() 2111 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, 0, 0, in ParseObjCMessageExpressionBody() 2149 if (SuperLoc.isValid()) in ParseObjCMessageExpressionBody() 2150 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, in ParseObjCMessageExpressionBody() 2184 if (SuperLoc.isValid()) in ParseObjCMessageExpressionBody() 2185 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, in ParseObjCMessageExpressionBody() 2255 if (SuperLoc.isValid()) in ParseObjCMessageExpressionBody() 2256 return Actions.ActOnSuperMessage(getCurScope(), SuperLoc, Sel, in ParseObjCMessageExpressionBody()
|
D | ParseExpr.cpp | 237 SourceLocation SuperLoc, in ParseAssignmentExprWithObjCMessageExprStart() argument 241 = ParseObjCMessageExpressionBody(LBracLoc, SuperLoc, in ParseAssignmentExprWithObjCMessageExprStart()
|
/external/clang/lib/AST/ |
D | Expr.cpp | 2629 SourceLocation SuperLoc, in ObjCMessageExpr() argument 2642 HasMethod(Method != 0), IsDelegateInitCall(false), SuperLoc(SuperLoc), in ObjCMessageExpr() 2724 SourceLocation SuperLoc, in Create() argument 2735 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper, in Create()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 814 const FunctionProtoType *Superset, SourceLocation SuperLoc, 4913 SourceLocation SuperLoc, 5087 SourceLocation SuperLoc, QualType SuperType, 5117 ExprResult ActOnSuperMessage(Scope *S, SourceLocation SuperLoc, 5126 SourceLocation SuperLoc, 5144 SourceLocation SuperLoc, 5814 void CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc,
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1292 SourceLocation SuperLoc, 1296 SourceLocation LBracloc, SourceLocation SuperLoc,
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 846 SourceLocation SuperLoc = ReadSourceLocation(Record, Idx); in VisitObjCMessageExpr() local 847 E->setSuper(SuperLoc, T, Kind == ObjCMessageExpr::SuperInstance); in VisitObjCMessageExpr()
|