reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/Decl.h
 3226   SourceLocation getInnerLocStart() const { return getBeginLoc(); }
tools/clang/include/clang/AST/DeclCXX.h
 3619   SourceLocation getUsingLoc() const { return getBeginLoc(); }
tools/clang/include/clang/ASTMatchers/ASTMatchers.h
  240       SourceManager.getExpansionLoc(Node.getBeginLoc()));
  260   auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getBeginLoc());
  286   auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getBeginLoc());
tools/clang/lib/ARCMigrate/ObjCMT.cpp
  734   SourceRange R(EnumDcl->getBeginLoc(), EnumDcl->getBeginLoc());
  734   SourceRange R(EnumDcl->getBeginLoc(), EnumDcl->getBeginLoc());
  740     SourceRange EnumDclRange(EnumDcl->getBeginLoc(), EndOfEnumDclLoc);
  741     commit.insertFromRange(TypedefDcl->getBeginLoc(), EnumDclRange);
  750     SourceRange TDRange(TypedefDcl->getBeginLoc(), EndTypedefDclLoc);
  760     SourceLocation BeginOfEnumDclLoc = EnumDcl->getBeginLoc();
  791       CharSourceRange::getCharRange(EnumDcl->getBeginLoc(), EndLoc);
  944         if (!InsertFoundation(Ctx, TypedefDcl->getBeginLoc()))
  957   if (!InsertFoundation(Ctx, TypedefDcl->getBeginLoc()))
tools/clang/lib/AST/ASTImporter.cpp
 2352       D->getUnderlyingType(), D->getTypeSourceInfo(), D->getBeginLoc()))
 2545       D->getBeginLoc(), D->getQualifierLoc(), D->getIntegerType()))
 2677   ExpectedSLoc BeginLocOrErr = import(D->getBeginLoc());
 4950   ExpectedSLoc BeginLocOrErr = import(D->getBeginLoc());
 5213   ExpectedSLoc BeginLocOrErr = import(D->getBeginLoc());
tools/clang/lib/AST/Decl.cpp
 4790   return SourceRange(getBeginLoc(), RangeEnd);
 4794   SourceLocation RangeEnd = getBeginLoc();
 4797   return SourceRange(getBeginLoc(), RangeEnd);
tools/clang/lib/AST/DeclTemplate.cpp
  538     return SourceRange(getBeginLoc(),
  544     return SourceRange(getBeginLoc());
tools/clang/lib/Sema/SemaDecl.cpp
15690       Context, Record->getTagKind(), CurContext, Record->getBeginLoc(),
tools/clang/lib/Sema/SemaDeclObjC.cpp
  874             diagLoc = newTypeParam->getBeginLoc();
  895               diag << FixItHint::CreateInsertion(newTypeParam->getBeginLoc(),
tools/clang/lib/Sema/SemaExpr.cpp
16110           Diag(LSI->Lambda->getBeginLoc(), diag::note_lambda_decl);
16177           Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getBeginLoc(),
tools/clang/lib/Sema/SemaExprObjC.cpp
 3844                 S.Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
 3854           S.Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
 3899                 S.Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
 3914                 S.Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
 3924         S.Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
 4049       Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
 4060       Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
 4075         Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
 4089         Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
 4134         Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
 4177         Diag(TDNDecl->getBeginLoc(), diag::note_declared_at);
tools/clang/lib/Sema/SemaTemplate.cpp
 1868           SemaRef.Context, DC, TTP->getBeginLoc(), TTP->getLocation(),
 3359           ClassTemplate->getTemplatedDecl()->getBeginLoc(),
tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  734       SemaRef.getSourceManager().isInSystemHeader(D->getBeginLoc()))
  742     Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
  745     Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
 1170       EnumDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
 1429       SemaRef.Context, Pattern->getTagKind(), DC, Pattern->getBeginLoc(),
 1665       SemaRef.Context, D->getTagKind(), Owner, D->getBeginLoc(),
 2407       SemaRef.Context, Owner, D->getBeginLoc(), D->getLocation(),
 3326           SemaRef.Context, D->getTagKind(), Owner, D->getBeginLoc(),
 3655           PartialSpec->getBeginLoc(), PartialSpec->getLocation(), InstParams,
tools/clang/lib/Sema/SemaType.cpp
 7356     S.Diag(TypedefTy->getDecl()->getBeginLoc(),
tools/clang/lib/Serialization/ASTWriter.cpp
 5350         Record.AddSourceLocation(RD->getBeginLoc());
tools/clang/lib/Serialization/ASTWriterDecl.cpp
  367   Record.AddSourceLocation(D->getBeginLoc());
tools/clang/tools/extra/clang-move/Move.cpp
  115   auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getBeginLoc());
tools/clang/tools/extra/clang-tidy/fuchsia/MultipleInheritanceCheck.cpp
  123       diag(D->getBeginLoc(), "inheriting mulitple classes that aren't "
tools/clang/tools/extra/clang-tidy/fuchsia/VirtualInheritanceCheck.cpp
   37     diag(D->getBeginLoc(), "direct virtual inheritance is disallowed");
tools/clang/tools/extra/clang-tidy/modernize/UseUsingCheck.cpp
   86   SourceLocation StartLoc = MatchedDecl->getBeginLoc();
tools/clang/unittests/Tooling/RecursiveASTVisitorTests/LambdaTemplateParams.cpp
   24     Match(D->getName(), D->getBeginLoc());