Home
last modified time | relevance | path

Searched refs:getRepAsDecl (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp461 return cast<TagDecl>(getRepAsDecl())->isCompleteDefinition(); in hasTagDefinition()
1466 return isDeclRep(tst) && getRepAsDecl() != nullptr && in isMissingDeclaratorOk()
H A DSemaType.cpp1591 TagDecl *D = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl()); in ConvertDeclSpecToType()
3560 OwnedTagDecl = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); in GetDeclSpecTypeForDeclarator()
5471 TagDecl *Tag = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); in GetFullTypeForDeclarator()
H A DSemaDecl.cpp5122 if (const auto *ED = dyn_cast<EnumDecl>(DS.getRepAsDecl())) { in GetDiagnosticTypeSpecifierID()
5149 TagD = DS.getRepAsDecl(); in ParsedFreeStandingDeclSpec()
14893 Decls.push_back(DS.getRepAsDecl()); in FinalizeDeclaratorGroup()
14951 if (TagDecl *Tag = dyn_cast_or_null<TagDecl>(DS.getRepAsDecl())) { in FinalizeDeclaratorGroup()
16903 TagDecl *tagFromDeclSpec = cast<TagDecl>(D.getDeclSpec().getRepAsDecl()); in ParseTypedefDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseTemplate.cpp259 Actions.ActOnDefinedDeclarationSpecifier(DS.getRepAsDecl()); in ParseSingleDeclarationAfterTemplate()
H A DParseDecl.cpp59 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : nullptr; in ParseTypeName()
2025 Actions.ActOnDefinedDeclarationSpecifier(DS.getRepAsDecl()); in ParseSimpleDeclaration()
3278 Diag(PP.getLocForEndOfToken(DS.getRepAsDecl()->getEndLoc()), in DiagnoseMissingSemiAfterTagDefinition()
H A DParser.cpp1199 Actions.ActOnDefinedDeclarationSpecifier(DS.getRepAsDecl()); in ParseDeclOrFunctionDefInternal()
H A DParseDeclCXX.cpp2885 Actions.ActOnDefinedDeclarationSpecifier(DS.getRepAsDecl()); in ParseCXXClassMemberDeclaration()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h525 Decl *getRepAsDecl() const { in getRepAsDecl() function