HomeSort by: relevance | last modified time | path
    Searched refs:SuperLoc (Results 1 - 22 of 22) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprObjC.cpp 108 SourceLocation SuperLoc, bool IsInstanceSuper,
119 IsImplicit(isImplicit), SuperLoc(SuperLoc), LBracLoc(LBracLoc),
176 SourceLocation LBracLoc, SourceLocation SuperLoc,
189 return new (Mem) ObjCMessageExpr(T, VK, LBracLoc, SuperLoc, IsInstanceSuper,
NestedNameSpecifier.cpp 620 SourceLocation SuperLoc,
625 SaveSourceLocation(SuperLoc, Buffer, BufferSize, BufferCapacity);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp 1980 SourceLocation SuperLoc, QualType SuperType,
1993 SourceRange BaseRange = Super? SourceRange(SuperLoc)
2008 OK_ObjCProperty, MemberLoc, SuperLoc, SuperType);
2025 SuperLoc, SuperType);
2095 OK_ObjCProperty, MemberLoc, SuperLoc, SuperType);
2129 SuperLoc, SuperType, Super);
2383 SourceLocation SuperLoc,
2390 ObjCMethodDecl *Method = tryCaptureObjCSelf(SuperLoc);
2392 Diag(SuperLoc, diag::err_invalid_receiver_to_message_super);
2398 Diag(SuperLoc, diag::err_no_super_class_message
    [all...]
SemaExceptionSpec.cpp 765 SourceLocation SuperLoc,
777 SubLoc = SuperLoc;
780 Superset = ResolveExceptionSpec(SuperLoc, Superset);
807 return CheckParamExceptionSpec(NestedDiagID, NoteID, Superset, SuperLoc,
816 Diag(SuperLoc, NoteID);
826 Diag(SuperLoc, NoteID);
855 Diag(SuperLoc, NoteID);
860 return CheckParamExceptionSpec(NestedDiagID, NoteID, Superset, SuperLoc,
SemaCXXScopeSpec.cpp 278 bool Sema::ActOnSuperScopeSpecifier(SourceLocation SuperLoc,
295 Diag(SuperLoc, diag::err_invalid_super_scope);
298 Diag(SuperLoc, diag::err_super_in_lambda_unsupported);
301 Diag(SuperLoc, diag::err_no_base_classes) << RD->getName();
305 SS.MakeSuper(Context, RD, SuperLoc, ColonColonLoc);
SemaDeclObjC.cpp 548 SourceLocation SuperLoc,
552 NamedDecl *PrevDecl = LookupSingleName(TUScope, SuperName, SuperLoc,
560 DeclarationNameInfo(SuperName, SuperLoc), LookupOrdinaryName,
569 Diag(SuperLoc, diag::err_recursive_superclass)
579 (void)DiagnoseUseOfDecl(SuperClassDecl, SuperLoc);
598 (void)DiagnoseUseOfDecl(const_cast<TypedefNameDecl*>(TDecl), SuperLoc);
609 Diag(SuperLoc, diag::err_redefinition_different_kind) << SuperName;
616 Diag(SuperLoc, diag::err_undef_superclass)
618 else if (RequireCompleteType(SuperLoc,
639 SuperLoc,
    [all...]
DeclSpec.cpp 114 SourceLocation SuperLoc,
116 Builder.MakeSuper(Context, RD, SuperLoc, ColonColonLoc);
118 Range.setBegin(SuperLoc);
SemaCodeComplete.cpp 7386 void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc,
7414 NamedDecl *ND = LookupSingleName(S, Super, SuperLoc, LookupOrdinaryName);
7428 id.setIdentifier(Super, SuperLoc);
TreeTransform.h 3462 /*SuperLoc=*/SourceLocation(),
3477 /*SuperLoc=*/SourceLocation(),
3483 ExprResult RebuildObjCMessageExpr(SourceLocation SuperLoc,
3493 SuperLoc,
3498 SuperLoc,
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexDecl.cpp 377 SourceLocation SuperLoc) {
384 if (Loc == SuperLoc)
395 SourceLocation SuperLoc = D->getSuperClassLoc();
402 TRY_TO(IndexCtx.handleReference(TD, SuperLoc, D, D,
410 TRY_TO(IndexCtx.handleReference(SuperD, SuperLoc, D, D, superRoles,
414 SuperLoc));
427 /*SuperLoc=*/SourceLocation()));
477 /*SuperLoc=*/SourceLocation()));
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprObjC.h 677 SourceLocation IdLoc, SourceLocation SuperLoc,
681 IdLoc(IdLoc), ReceiverLoc(SuperLoc), Receiver(SuperTy.getTypePtr()) {
981 SourceLocation SuperLoc;
995 SourceLocation SuperLoc,
1112 /// \param SuperLoc The location of the "super" keyword.
1128 SourceLocation SuperLoc,
1293 return SuperLoc;
1335 SuperLoc = Loc;
NestedNameSpecifier.h 462 /// \param SuperLoc The location of the '__super' keyword.
467 SourceLocation SuperLoc, SourceLocation ColonColonLoc);
DeclObjC.h 2539 SourceLocation SuperLoc;
2561 SourceLocation superLoc = SourceLocation(),
2568 SuperClass(superDecl), SuperLoc(superLoc),
2583 SourceLocation superLoc = SourceLocation(),
2673 SourceLocation getSuperClassLoc() const { return SuperLoc; }
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseObjc.cpp 3119 /// target is represented by \p SuperLoc, \p ReceiverType, or \p
3125 /// \param SuperLoc If this is a send to 'super', the location of the
3154 SourceLocation SuperLoc,
3161 if (SuperLoc.isValid())
3162 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc, None,
3199 if (SuperLoc.isValid())
3200 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
3237 if (SuperLoc.isValid())
3238 Actions.CodeCompleteObjCSuperMessage(getCurScope(), SuperLoc,
3309 if (SuperLoc.isValid()
    [all...]
ParseExpr.cpp 190 SourceLocation SuperLoc,
194 = ParseObjCMessageExpressionBody(LBracLoc, SuperLoc,
ParseExprCXX.cpp 203 SourceLocation SuperLoc = ConsumeToken();
209 return Actions.ActOnSuperScopeSpecifier(SuperLoc, ConsumeToken(), SS);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXIndexDataConsumer.cpp 679 SourceLocation SuperLoc = D->getSuperClassLoc();
681 BaseClass.cursor = MakeCursorObjCSuperClassRef(SuperD, SuperLoc, CXTU);
682 BaseClass.loc = getIndexLoc(SuperLoc);
685 markEntityOccurrenceInFile(SuperD, SuperLoc);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 2010 SourceLocation SuperLoc,
6391 /// \param SuperLoc The location of the '__super' keyword.
6399 bool ActOnSuperScopeSpecifier(SourceLocation SuperLoc,
9472 IdentifierInfo *SuperName, SourceLocation SuperLoc,
9484 SourceLocation SuperLoc,
9491 SourceLocation SuperLoc);
9707 SourceLocation SuperLoc, QualType SuperType,
9737 ExprResult ActOnSuperMessage(Scope *S, SourceLocation SuperLoc,
9746 SourceLocation SuperLoc,
9772 SourceLocation SuperLoc,
    [all...]
DeclSpec.h 151 /// \param SuperLoc The location of the '__super' keyword.
156 SourceLocation SuperLoc, SourceLocation ColonColonLoc);
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 2031 SourceLocation SuperLoc,
2035 SourceLocation LBracloc, SourceLocation SuperLoc,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 1537 SourceLocation SuperLoc = readSourceLocation();
1538 E->setSuper(SuperLoc, T, Kind == ObjCMessageExpr::SuperInstance);
ASTReaderDecl.cpp 1325 D->SuperLoc = readSourceLocation();

Completed in 149 milliseconds