Home
last modified time | relevance | path

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

/external/clang/lib/Serialization/
DASTWriter.cpp4324 RecordData DelegatingCtorDecls; in WriteASTCore() local
4326 AddLazyVectorDecls(*this, SemaRef.DelegatingCtorDecls, DelegatingCtorDecls); in WriteASTCore()
4663 if (!DelegatingCtorDecls.empty()) in WriteASTCore()
4664 Stream.EmitRecord(DELEGATING_CTORS, DelegatingCtorDecls); in WriteASTCore()
DASTReader.cpp2879 DelegatingCtorDecls.push_back(getGlobalDeclID(F, Record[I])); in ReadASTBlock()
7351 for (unsigned I = 0, N = DelegatingCtorDecls.size(); I != N; ++I) { in ReadDelegatingConstructors()
7353 = dyn_cast_or_null<CXXConstructorDecl>(GetDecl(DelegatingCtorDecls[I])); in ReadDelegatingConstructors()
7357 DelegatingCtorDecls.clear(); in ReadDelegatingConstructors()
/external/clang/include/clang/Serialization/
DASTReader.h766 SmallVector<uint64_t, 4> DelegatingCtorDecls; variable
/external/clang/lib/Sema/
DSemaDeclCXX.cpp3882 DelegatingCtorDecls.push_back(Constructor); in SetDelegatingInitializer()
13421 I = DelegatingCtorDecls.begin(ExternalSource), in CheckDelegatingCtorCycles()
13422 E = DelegatingCtorDecls.end(); in CheckDelegatingCtorCycles()
/external/clang/include/clang/Sema/
DSema.h440 DelegatingCtorDeclsType DelegatingCtorDecls; variable