Lines Matching refs:FieldDecl

684   assert(!isa<FieldDecl>(D) && "Didn't expect a FieldDecl!");  in getLVForNamespaceScopeDecl()
932 isa<FieldDecl>(D) || in getLVForClassMember()
1836 if (isa<FieldDecl>(D) || isa<IndirectFieldDecl>(D) || isa<MSPropertyDecl>(D)) in isCXXInstanceMember()
4137 FieldDecl *FieldDecl::Create(const ASTContext &C, DeclContext *DC, in Create()
4142 return new (C, DC) FieldDecl(Decl::Field, DC, StartLoc, IdLoc, Id, T, TInfo, in Create()
4146 FieldDecl *FieldDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
4147 return new (C, ID) FieldDecl(Field, nullptr, SourceLocation(), in CreateDeserialized()
4152 bool FieldDecl::isAnonymousStructOrUnion() const { in isAnonymousStructOrUnion()
4162 unsigned FieldDecl::getBitWidthValue(const ASTContext &Ctx) const { in getBitWidthValue()
4167 bool FieldDecl::isZeroLengthBitField(const ASTContext &Ctx) const { in isZeroLengthBitField()
4172 bool FieldDecl::isZeroSize(const ASTContext &Ctx) const { in isZeroSize()
4205 unsigned FieldDecl::getFieldIndex() const { in getFieldIndex()
4206 const FieldDecl *Canonical = getCanonicalDecl(); in getFieldIndex()
4225 SourceRange FieldDecl::getSourceRange() const { in getSourceRange()
4234 void FieldDecl::setCapturedVLAType(const VariableArrayType *VLAType) { in setCapturedVLAType()
4561 for (const FieldDecl *FD : Def->fields()) { in isOrContainsUnion()
4602 return FieldDecl::classofKind(K) || IndirectFieldDecl::classofKind(K); in LoadFieldsFromExternalStorage()
4608 assert(isa<FieldDecl>(Decls[i]) || isa<IndirectFieldDecl>(Decls[i])); in LoadFieldsFromExternalStorage()
4662 const FieldDecl *RecordDecl::findFirstNamedDataMember() const { in findFirstNamedDataMember()
4668 if (const FieldDecl *NamedDataMember = in findFirstNamedDataMember()