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

References

tools/clang/lib/AST/CXXInheritance.cpp
   44     Decls.insert(Path->Decls.front());
  424     if (Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag))
  438     if (Path.Decls.front()->isInIdentifierNamespace(IDNS))
  482     if (Path.Decls.front()->isInIdentifierNamespace(IDNS_OMPReduction))
  497     if (Path.Decls.front()->isInIdentifierNamespace(IDNS_OMPMapper))
  515     if (isa<TypedefNameDecl>(Path.Decls.front()) ||
  516         Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag))
tools/clang/lib/AST/ComparisonCategories.cpp
   62   if (Lookup.size() != 1 || !isa<VarDecl>(Lookup.front()))
   64   Objects.emplace_back(ValueKind, cast<VarDecl>(Lookup.front()));
   74       StdNS = dyn_cast<NamespaceDecl>(Lookup.front());
   85     if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Lookup.front()))
tools/clang/lib/AST/DeclCXX.cpp
 1397     if (!declaresSameEntity(D, R.front()))
 1412   return Calls.front();
 1440   NamedDecl *InvokerFun = Invoker.front();
 1775   return R.empty() ? nullptr : dyn_cast<CXXDestructorDecl>(R.front());
tools/clang/lib/Sema/SemaDecl.cpp
 7821       NamedDecl *D = Path.Decls.front();
tools/clang/lib/Sema/SemaDeclCXX.cpp
 4038   if ((Member = dyn_cast<FieldDecl>(Result.front())) ||
 4039       (Member = dyn_cast<IndirectFieldDecl>(Result.front())))
 8218       NamedDecl *D = Path.Decls.front();
tools/clang/lib/Sema/SemaInit.cpp
 2523           SemaRef.Diag(Lookup.front()->getLocation(),
tools/clang/lib/Sema/SemaLambda.cpp
 1868           Context.DeclarationNames.getCXXOperatorName(OO_Call)).front());
tools/clang/lib/Sema/SemaLookup.cpp
 2569       Decl *D = Path->Decls.front();
tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
 2863         FieldDecl *Pattern = cast<FieldDecl>(Lookup.front());
tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
  816       PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front());
 1338       PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front());
 1508     = dyn_cast<ClassTemplateDecl>(Found.front());
 1537       PrevVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
 1590   VarTemplateDecl *InstVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
tools/clang/lib/Sema/TreeTransform.h
 3233     FunctionDecl *Builtin = cast<FunctionDecl>(Lookup.front());
tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp
  257   auto *SuccessField = dyn_cast<FieldDecl>(Result.front());
tools/clang/tools/extra/clang-change-namespace/ChangeNamespace.cpp
  310       return LookupRes.front();
tools/clang/tools/extra/clangd/unittests/TestTU.cpp
  128     return *LookupRes.front();
tools/clang/tools/libclang/CXType.cpp
 1032   if (const FieldDecl *FD = dyn_cast<FieldDecl>(Res.front()))
 1034   if (const IndirectFieldDecl *IFD = dyn_cast<IndirectFieldDecl>(Res.front()))
tools/clang/unittests/AST/ASTContextParentMapTest.cpp
   89   auto &Foo = *TU.lookup(&Ctx.Idents.get("foo")).front();
   90   auto &Bar = *cast<DeclContext>(Foo).lookup(&Ctx.Idents.get("bar")).front();
tools/clang/unittests/Tooling/RecursiveASTVisitorTests/TraversalScope.cpp
   38   auto &Foo = *TU.lookup(&Ctx.Idents.get("foo")).front();
   39   auto &Bar = *cast<DeclContext>(Foo).lookup(&Ctx.Idents.get("bar")).front();
tools/lldb/source/Symbol/ClangASTContext.cpp
  193                     llvm::dyn_cast<clang::CXXMethodDecl>(path.Decls.front()))