Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp4799 RecordData DelegatingCtorDecls; in WriteASTCore() local
4801 AddLazyVectorDecls(*this, SemaRef.DelegatingCtorDecls, DelegatingCtorDecls); in WriteASTCore()
5176 if (!DelegatingCtorDecls.empty()) in WriteASTCore()
5177 Stream.EmitRecord(DELEGATING_CTORS, DelegatingCtorDecls); in WriteASTCore()
H A DASTReader.cpp3516 DelegatingCtorDecls.push_back(getGlobalDeclID(F, Record[I])); in ReadASTBlock()
8642 for (unsigned I = 0, N = DelegatingCtorDecls.size(); I != N; ++I) { in ReadDelegatingConstructors()
8644 = dyn_cast_or_null<CXXConstructorDecl>(GetDecl(DelegatingCtorDecls[I])); in ReadDelegatingConstructors()
8648 DelegatingCtorDecls.clear(); in ReadDelegatingConstructors()
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h833 SmallVector<serialization::DeclID, 4> DelegatingCtorDecls; variable
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp5359 DelegatingCtorDecls.push_back(Constructor); in SetDelegatingInitializer()
18944 I = DelegatingCtorDecls.begin(ExternalSource.get()), in CheckDelegatingCtorCycles()
18945 E = DelegatingCtorDecls.end(); in CheckDelegatingCtorCycles()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h922 DelegatingCtorDeclsType DelegatingCtorDecls; variable