Home
last modified time | relevance | path

Searched refs:AllowDefiningTypeSpec (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2208 enum class AllowDefiningTypeSpec { enum
2225 static AllowDefiningTypeSpec
2233 return AllowDefiningTypeSpec::Yes; in isDefiningTypeSpecifierContext()
2237 return AllowDefiningTypeSpec::YesButInvalid; in isDefiningTypeSpecifierContext()
2241 return AllowDefiningTypeSpec::NoButErrorRecovery; in isDefiningTypeSpecifierContext()
2244 return AllowDefiningTypeSpec::No; in isDefiningTypeSpecifierContext()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp4465 AllowDefiningTypeSpec AllowEnumSpecifier = in ParseEnumSpecifier()
4471 (AllowEnumSpecifier == AllowDefiningTypeSpec::Yes || in ParseEnumSpecifier()
4608 if (AllowEnumSpecifier == AllowDefiningTypeSpec::No) in ParseEnumSpecifier()
4696 << (AllowEnumSpecifier == AllowDefiningTypeSpec::Yes) << BaseRange; in ParseEnumSpecifier()
H A DParseDeclCXX.cpp1744 if (isDefiningTypeSpecifierContext(DSC) == AllowDefiningTypeSpec::No || in ParseClassSpecifier()