Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DDecl.h2917 llvm::PointerIntPair<void *, 2, InitStorageKind> InitStorage; variable
2926 InitStorage(nullptr, (InitStorageKind) InitStyle) { in FieldDecl()
2965 void *Ptr = InitStorage.getPointer(); in getBitWidth()
2979 InitStorage.setPointer( in setBitWidth()
2980 InitStorage.getInt() in setBitWidth()
2991 InitStorage.setPointer(getInClassInitializer()); in removeBitWidth()
3007 InitStorageKind storageKind = InitStorage.getInt(); in getInClassInitStyle()
3023 void *Ptr = InitStorage.getPointer(); in getInClassInitializer()
3035 InitStorage.setPointer(Init); in setInClassInitializer()
3041 InitStorage.setPointerAndInt(getBitWidth(), ISK_NoInit); in removeInClassInitializer()
[all …]
/llvm-project-15.0.7/clang/lib/AST/
H A DDecl.cpp4356 assert(InitStorage.getInt() == ISK_NoInit && in setCapturedVLAType()
4357 InitStorage.getPointer() == nullptr && in setCapturedVLAType()
4359 InitStorage.setPointerAndInt(const_cast<VariableArrayType *>(VLAType), in setCapturedVLAType()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReaderDecl.cpp1447 FD->InitStorage.setInt(ISK); in VisitFieldDecl()
1448 FD->InitStorage.setPointer(ISK == FieldDecl::ISK_CapturedVLAType in VisitFieldDecl()
H A DASTWriterDecl.cpp924 FieldDecl::InitStorageKind ISK = D->InitStorage.getInt(); in VisitFieldDecl()