Home
last modified time | relevance | path

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

/external/clang/lib/Serialization/
DASTWriter.cpp4211 RecordData DelegatingCtorDecls; in WriteASTCore() local
4213 AddLazyVectorDecls(*this, SemaRef.DelegatingCtorDecls, DelegatingCtorDecls); in WriteASTCore()
4564 if (!DelegatingCtorDecls.empty()) in WriteASTCore()
4565 Stream.EmitRecord(DELEGATING_CTORS, DelegatingCtorDecls); in WriteASTCore()
DASTReader.cpp2733 DelegatingCtorDecls.push_back(getGlobalDeclID(F, Record[I])); in ReadASTBlock()
7281 for (unsigned I = 0, N = DelegatingCtorDecls.size(); I != N; ++I) { in ReadDelegatingConstructors()
7283 = dyn_cast_or_null<CXXConstructorDecl>(GetDecl(DelegatingCtorDecls[I])); in ReadDelegatingConstructors()
7287 DelegatingCtorDecls.clear(); in ReadDelegatingConstructors()
/external/clang/include/clang/Serialization/
DASTReader.h735 SmallVector<uint64_t, 4> DelegatingCtorDecls; variable
/external/clang/lib/Sema/
DSemaDeclCXX.cpp3842 DelegatingCtorDecls.push_back(Constructor); in SetDelegatingInitializer()
13707 I = DelegatingCtorDecls.begin(ExternalSource), in CheckDelegatingCtorCycles()
13708 E = DelegatingCtorDecls.end(); in CheckDelegatingCtorCycles()
/external/clang/include/clang/Sema/
DSema.h533 DelegatingCtorDeclsType DelegatingCtorDecls; variable