Home
last modified time | relevance | path

Searched refs:InitStorage (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDecl.h2840 llvm::PointerIntPair<void *, 2, InitStorageKind> InitStorage; variable
2849 InitStorage(nullptr, (InitStorageKind) InitStyle) { in FieldDecl()
2888 void *Ptr = InitStorage.getPointer(); in getBitWidth()
2902 InitStorage.setPointer( in setBitWidth()
2903 InitStorage.getInt() in setBitWidth()
2914 InitStorage.setPointer(getInClassInitializer()); in removeBitWidth()
2930 InitStorageKind storageKind = InitStorage.getInt(); in getInClassInitStyle()
2946 void *Ptr = InitStorage.getPointer(); in getInClassInitializer()
2956 static_cast<InitAndBitWidth*>(InitStorage.getPointer())->Init = Init; in setInClassInitializer()
2958 InitStorage.setPointer(Init); in setInClassInitializer()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDecl.cpp4237 assert(InitStorage.getInt() == ISK_NoInit && in setCapturedVLAType()
4238 InitStorage.getPointer() == nullptr && in setCapturedVLAType()
4240 InitStorage.setPointerAndInt(const_cast<VariableArrayType *>(VLAType), in setCapturedVLAType()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderDecl.cpp1352 FD->InitStorage.setInt(ISK); in VisitFieldDecl()
1353 FD->InitStorage.setPointer(ISK == FieldDecl::ISK_CapturedVLAType in VisitFieldDecl()
H A DASTWriterDecl.cpp918 FieldDecl::InitStorageKind ISK = D->InitStorage.getInt(); in VisitFieldDecl()