Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h2866 llvm::PointerIntPair<void *, 2, InitStorageKind> InitStorage; variable
2875 InitStorage(nullptr, (InitStorageKind) InitStyle) { in FieldDecl()
2914 void *Ptr = InitStorage.getPointer(); in getBitWidth()
2928 InitStorage.setPointer( in setBitWidth()
2929 InitStorage.getInt() in setBitWidth()
2940 InitStorage.setPointer(getInClassInitializer()); in removeBitWidth()
2956 InitStorageKind storageKind = InitStorage.getInt(); in getInClassInitStyle()
2972 void *Ptr = InitStorage.getPointer(); in getInClassInitializer()
2984 InitStorage.setPointer(Init); in setInClassInitializer()
2990 InitStorage.setPointerAndInt(getBitWidth(), ISK_NoInit); in removeInClassInitializer()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp4230 assert(InitStorage.getInt() == ISK_NoInit && in setCapturedVLAType()
4231 InitStorage.getPointer() == nullptr && in setCapturedVLAType()
4233 InitStorage.setPointerAndInt(const_cast<VariableArrayType *>(VLAType), in setCapturedVLAType()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1354 FD->InitStorage.setInt(ISK); in VisitFieldDecl()
1355 FD->InitStorage.setPointer(ISK == FieldDecl::ISK_CapturedVLAType in VisitFieldDecl()
H A DASTWriterDecl.cpp920 FieldDecl::InitStorageKind ISK = D->InitStorage.getInt(); in VisitFieldDecl()