Home
last modified time | relevance | path

Searched refs:IndirectField (Results 1 – 16 of 16) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DDeclNodes.td39 def IndirectField : DeclNode<Value>;
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp203 case Decl::Kind::IndirectField: in HandleNamedDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTCommon.cpp387 case Decl::IndirectField: in isRedeclarableDeclKind()
/freebsd-13.1/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp179 case Decl::IndirectField: in getSymbolInfo()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp1274 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create( in VisitIndirectFieldDecl() local
1279 IndirectField->addAttr(Attr->clone(SemaRef.Context)); in VisitIndirectFieldDecl()
1281 IndirectField->setImplicit(D->isImplicit()); in VisitIndirectFieldDecl()
1282 IndirectField->setAccess(D->getAccess()); in VisitIndirectFieldDecl()
1283 Owner->addDecl(IndirectField); in VisitIndirectFieldDecl()
1284 return IndirectField; in VisitIndirectFieldDecl()
H A DSemaDecl.cpp4972 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create( in InjectAnonymousStructOrUnionMembers() local
4977 IndirectField->addAttr(Attr->clone(SemaRef.Context)); in InjectAnonymousStructOrUnionMembers()
4979 IndirectField->setAccess(AS); in InjectAnonymousStructOrUnionMembers()
4980 IndirectField->setImplicit(); in InjectAnonymousStructOrUnionMembers()
4981 SemaRef.PushOnScopeChains(IndirectField, S); in InjectAnonymousStructOrUnionMembers()
4984 if (AS != AS_none) IndirectField->setAccess(AS); in InjectAnonymousStructOrUnionMembers()
H A DSemaInit.cpp2301 IndirectFieldDecl *IndirectField) { in ExpandAnonymousFieldDesignator() argument
2306 for (IndirectFieldDecl::chain_iterator PI = IndirectField->chain_begin(), in ExpandAnonymousFieldDesignator()
2307 PE = IndirectField->chain_end(); PI != PE; ++PI) { in ExpandAnonymousFieldDesignator()
H A DSemaDeclCXX.cpp1878 case Decl::IndirectField: in CheckConstexprDeclStmt()
H A DSemaExpr.cpp3287 case Decl::IndirectField: in BuildDeclarationNameExpr()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2225 for (const ClassInfo::MemberInfo &IndirectField : NestedInfo.Members) in collectMemberInfo() local
2227 {IndirectField.MemberTypeNode, IndirectField.BaseOffset + Offset}); in collectMemberInfo()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGClass.cpp619 IndirectFieldDecl *IndirectField = MemberInit->getIndirectMember(); in EmitLValueForAnyFieldInitialization() local
620 for (const auto *I : IndirectField->chain()) in EmitLValueForAnyFieldInitialization()
H A DCGDecl.cpp68 case Decl::IndirectField: in EmitDecl()
H A DCodeGenModule.cpp5720 case Decl::IndirectField: in EmitTopLevelDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp755 case IndirectField: in getIdentifierNamespaceForKind()
H A DDecl.cpp4916 : ValueDecl(IndirectField, DC, L, N, T), Chaining(CH.data()), in IndirectFieldDecl()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3121 static bool classofKind(Kind K) { return K == IndirectField; } in classofKind()