Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp144 T *readDeclAs() { in readDeclAs() function in clang::ASTDeclReader
145 return Record.readDeclAs<T>(); in readDeclAs()
1481 auto *Tmpl = readDeclAs<VarDecl>(); in VisitVarDeclImpl()
1523 BDs[I] = readDeclAs<BindingDecl>(); in VisitDecompositionDecl()
1561 auto *decl = readDeclAs<VarDecl>(); in VisitBlockDecl()
1640 D->Namespace = readDeclAs<NamedDecl>(); in VisitNamespaceAliasDecl()
1660 D->Enum = readDeclAs<EnumDecl>(); in VisitUsingEnumDecl()
1679 D->Underlying = readDeclAs<NamedDecl>(); in VisitUsingShadowDecl()
1787 auto *Var = readDeclAs<VarDecl>(); in ReadCXXDefinitionData()
2049 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()
189 auto *LD = readDeclAs<LabelDecl>(); in VisitLabelStmt()
307 S->setLabel(readDeclAs<LabelDecl>()); in VisitGotoStmt()
629 E->D = readDeclAs<ValueDecl>(); in VisitDeclRefExpr()
1311 E->setLabel(readDeclAs<LabelDecl>()); in VisitAddrLabelExpr()
1849 E->Field = readDeclAs<FieldDecl>(); in VisitCXXDefaultInitExpr()
1941 Obj = readDeclAs<BlockDecl>(); in VisitExprWithCleanups()
2034 auto *D = readDeclAs<NamedDecl>(); in VisitOverloadExpr()
2161 Parms[i] = readDeclAs<VarDecl>(); in VisitFunctionParmPackExpr()
[all …]
H A DASTReader.cpp6626 TL.setParam(i, Reader.readDeclAs<ParmVarDecl>()); in VisitFunctionTypeLoc()
6676 TL.setFoundDecl(Reader.readDeclAs<NamedDecl>()); in VisitAutoTypeLoc()
8815 Params.push_back(readDeclAs<NamedDecl>()); in readTemplateParameterList()
8884 Member = readDeclAs<FieldDecl>(); in readCXXCtorInitializers()
8941 NamespaceDecl *NS = readDeclAs<NamespaceDecl>(); in readNestedNameSpecifierLoc()
12577 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPMapClause()
12700 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPToClause()
12756 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPFromClause()
12806 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPUseDevicePtrClause()
12848 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPUseDeviceAddrClause()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DAbstractBasicReader.h198 Decl *decl = asImpl().template readDeclAs<Decl>(); in readLValuePathSerializationHelper()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordReader.h205 T *readDeclAs() { in readDeclAs() function