Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderDecl.cpp145 T *readDeclAs() { in readDeclAs() function in clang::ASTDeclReader
146 return Record.readDeclAs<T>(); in readDeclAs()
1585 auto *Tmpl = readDeclAs<VarDecl>(); in VisitVarDeclImpl()
1627 BDs[I] = readDeclAs<BindingDecl>(); in VisitDecompositionDecl()
1665 auto *decl = readDeclAs<VarDecl>(); in VisitBlockDecl()
1744 D->Namespace = readDeclAs<NamedDecl>(); in VisitNamespaceAliasDecl()
1764 D->Enum = readDeclAs<EnumDecl>(); in VisitUsingEnumDecl()
1783 D->Underlying = readDeclAs<NamedDecl>(); in VisitUsingShadowDecl()
1891 auto *Var = readDeclAs<VarDecl>(); in ReadCXXDefinitionData()
2153 D->Friend = readDeclAs<NamedDecl>(); in VisitFriendDecl()
[all …]
H A DASTReaderStmt.cpp96 T *readDeclAs() { in readDeclAs() function in clang::ASTStmtReader
97 return Record.readDeclAs<T>(); in readDeclAs()
193 auto *LD = readDeclAs<LabelDecl>(); in VisitLabelStmt()
311 S->setLabel(readDeclAs<LabelDecl>()); in VisitGotoStmt()
614 E->D = readDeclAs<ValueDecl>(); in VisitDeclRefExpr()
1296 E->setLabel(readDeclAs<LabelDecl>()); in VisitAddrLabelExpr()
1834 E->Field = readDeclAs<FieldDecl>(); in VisitCXXDefaultInitExpr()
1926 Obj = readDeclAs<BlockDecl>(); in VisitExprWithCleanups()
2019 auto *D = readDeclAs<NamedDecl>(); in VisitOverloadExpr()
2146 Parms[i] = readDeclAs<VarDecl>(); in VisitFunctionParmPackExpr()
[all …]
H A DASTReader.cpp6666 TL.setParam(i, Reader.readDeclAs<ParmVarDecl>()); in VisitFunctionTypeLoc()
6721 TL.setFoundDecl(Reader.readDeclAs<NamedDecl>()); in VisitAutoTypeLoc()
8863 Params.push_back(readDeclAs<NamedDecl>()); in readTemplateParameterList()
8932 Member = readDeclAs<FieldDecl>(); in readCXXCtorInitializers()
12381 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPMapClause()
12504 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPToClause()
12560 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPFromClause()
12610 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPUseDevicePtrClause()
12652 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPUseDeviceAddrClause()
12695 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPIsDevicePtrClause()
[all …]
/llvm-project-15.0.7/clang/include/clang/AST/
H A DAbstractBasicReader.h198 Decl *decl = asImpl().template readDeclAs<Decl>(); in readLValuePathSerializationHelper()
/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DASTRecordReader.h206 T *readDeclAs() { in readDeclAs() function