Home
last modified time | relevance | path

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

/external/clang/lib/Serialization/
DASTWriter.cpp4154 RecordData DelegatingCtorDecls; in WriteASTCore() local
4156 AddLazyVectorDecls(*this, SemaRef.DelegatingCtorDecls, DelegatingCtorDecls); in WriteASTCore()
4496 if (!DelegatingCtorDecls.empty()) in WriteASTCore()
4497 Stream.EmitRecord(DELEGATING_CTORS, DelegatingCtorDecls); in WriteASTCore()
DASTReader.cpp2713 DelegatingCtorDecls.push_back(getGlobalDeclID(F, Record[I])); in ReadASTBlock()
7228 for (unsigned I = 0, N = DelegatingCtorDecls.size(); I != N; ++I) { in ReadDelegatingConstructors()
7230 = dyn_cast_or_null<CXXConstructorDecl>(GetDecl(DelegatingCtorDecls[I])); in ReadDelegatingConstructors()
7234 DelegatingCtorDecls.clear(); in ReadDelegatingConstructors()
/external/clang/include/clang/Serialization/
DASTReader.h740 SmallVector<uint64_t, 4> DelegatingCtorDecls; variable
/external/clang/lib/Sema/
DSemaDeclCXX.cpp3866 DelegatingCtorDecls.push_back(Constructor); in SetDelegatingInitializer()
13485 I = DelegatingCtorDecls.begin(ExternalSource), in CheckDelegatingCtorCycles()
13486 E = DelegatingCtorDecls.end(); in CheckDelegatingCtorCycles()
/external/clang/include/clang/Sema/
DSema.h501 DelegatingCtorDeclsType DelegatingCtorDecls; variable