Home
last modified time | relevance | path

Searched refs:readDeclAs (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp147 T *readDeclAs() { in readDeclAs() function in clang::ASTDeclReader
148 return Record.readDeclAs<T>(); in readDeclAs()
988 auto *FD = readDeclAs<FunctionDecl>(); in VisitFunctionDecl()
1683 auto *Tmpl = readDeclAs<VarDecl>(); in VisitVarDeclImpl()
1750 BDs[I] = readDeclAs<BindingDecl>(); in VisitDecompositionDecl()
1793 auto *decl = readDeclAs<VarDecl>(); in VisitBlockDecl()
1884 D->Namespace = readDeclAs<NamedDecl>(); in VisitNamespaceAliasDecl()
1923 D->Underlying = readDeclAs<NamedDecl>(); in VisitUsingShadowDecl()
2366 D->Friend = readDeclAs<NamedDecl>(); in VisitFriendDecl()
2385 D->Friend = readDeclAs<NamedDecl>(); in VisitFriendTemplateDecl()
[all …]
H A DASTReaderStmt.cpp99 T *readDeclAs() { in readDeclAs() function in clang::ASTStmtReader
100 return Record.readDeclAs<T>(); in readDeclAs()
195 auto *LD = readDeclAs<LabelDecl>(); in VisitLabelStmt()
315 S->setLabel(readDeclAs<LabelDecl>()); in VisitGotoStmt()
630 E->D = readDeclAs<ValueDecl>(); in VisitDeclRefExpr()
1330 E->setLabel(readDeclAs<LabelDecl>()); in VisitAddrLabelExpr()
1874 E->Field = readDeclAs<FieldDecl>(); in VisitCXXDefaultInitExpr()
1969 Obj = readDeclAs<BlockDecl>(); in VisitExprWithCleanups()
2072 auto *D = readDeclAs<NamedDecl>(); in VisitOverloadExpr()
2212 Parms[i] = readDeclAs<VarDecl>(); in VisitFunctionParmPackExpr()
[all …]
H A DASTReader.cpp6960 auto FoundDecl = readDeclAs<NamedDecl>(); in readConceptReference()
6961 auto NamedConcept = readDeclAs<ConceptDecl>(); in readConceptReference()
9136 Params.push_back(readDeclAs<NamedDecl>()); in readTemplateParameterList()
9205 Member = readDeclAs<FieldDecl>(); in readCXXCtorInitializers()
11178 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPMapClause()
11305 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPToClause()
11361 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPFromClause()
11411 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPUseDevicePtrClause()
11453 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPUseDeviceAddrClause()
11496 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPIsDevicePtrClause()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DAbstractBasicReader.h199 Decl *decl = asImpl().template readDeclAs<Decl>(); in readLValuePathSerializationHelper()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordReader.h211 T *readDeclAs() { in readDeclAs() function