Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp144 T *readDeclAs() { in readDeclAs() function in clang::ASTDeclReader
145 return Record.readDeclAs<T>(); in readDeclAs()
578 auto *SemaDC = readDeclAs<DeclContext>(); in VisitDecl()
579 auto *LexicalDC = readDeclAs<DeclContext>(); in VisitDecl()
698 if (auto *Template = readDeclAs<TypeAliasTemplateDecl>()) in VisitTypeAliasDecl()
783 if (auto *InstED = readDeclAs<EnumDecl>()) { in VisitEnumDecl()
899 NamedDecl *ND = Record.readDeclAs<NamedDecl>(); in VisitFunctionDecl()
914 FD->setDescribedFunctionTemplate(readDeclAs<FunctionTemplateDecl>()); in VisitFunctionDecl()
917 auto *InstFD = readDeclAs<FunctionDecl>(); in VisitFunctionDecl()
926 auto *Template = readDeclAs<FunctionTemplateDecl>(); in VisitFunctionDecl()
[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()
226 S->setConditionVariable(Record.getContext(), readDeclAs<VarDecl>()); in VisitIfStmt()
251 S->setConditionVariable(Record.getContext(), readDeclAs<VarDecl>()); in VisitSwitchStmt()
277 S->setConditionVariable(Record.getContext(), readDeclAs<VarDecl>()); in VisitWhileStmt()
297 S->setConditionVariable(Record.getContext(), readDeclAs<VarDecl>()); in VisitForStmt()
307 S->setLabel(readDeclAs<LabelDecl>()); in VisitGotoStmt()
336 S->setNRVOCandidate(readDeclAs<VarDecl>()); in VisitReturnStmt()
498 S->setCapturedDecl(readDeclAs<CapturedDecl>()); in VisitCapturedStmt()
[all …]
H A DASTReader.cpp6604 TL.setParam(i, Reader.readDeclAs<ParmVarDecl>()); in VisitFunctionTypeLoc()
6654 TL.setFoundDecl(Reader.readDeclAs<NamedDecl>()); in VisitAutoTypeLoc()
8786 Params.push_back(readDeclAs<NamedDecl>()); in readTemplateParameterList()
8855 Member = readDeclAs<FieldDecl>(); in readCXXCtorInitializers()
8859 IndirectMember = readDeclAs<IndirectFieldDecl>(); in readCXXCtorInitializers()
8912 NamespaceDecl *NS = readDeclAs<NamespaceDecl>(); in readNestedNameSpecifierLoc()
8919 NamespaceAliasDecl *Alias = readDeclAs<NamespaceAliasDecl>(); in readNestedNameSpecifierLoc()
8947 CXXRecordDecl *RD = readDeclAs<CXXRecordDecl>(); in readNestedNameSpecifierLoc()
12535 Decls.push_back(Record.readDeclAs<ValueDecl>()); in VisitOMPMapClause()
12554 auto *AssociatedDecl = Record.readDeclAs<ValueDecl>(); in VisitOMPMapClause()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DAbstractBasicReader.h198 Decl *decl = asImpl().template readDeclAs<Decl>(); in readLValuePathSerializationHelper()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Serialization/
H A DASTRecordReader.h205 T *readDeclAs() { in readDeclAs() function