Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseDecl.cpp5250 SourceLocation ScopedEnumKWLoc; in ParseEnumSpecifier() local
5258 ScopedEnumKWLoc = ConsumeToken(); in ParseEnumSpecifier()
5333 if (!Name && ScopedEnumKWLoc.isValid()) { in ParseEnumSpecifier()
5337 ScopedEnumKWLoc = SourceLocation(); in ParseEnumSpecifier()
5350 getCurScope()->isClassScope() && ScopedEnumKWLoc.isInvalid() && Name; in ParseEnumSpecifier()
5439 ScopedEnumKWLoc = SourceLocation(); in ParseEnumSpecifier()
5521 else if (ScopedEnumKWLoc.isValid()) in ParseEnumSpecifier()
5522 Diag(ScopedEnumKWLoc, diag::ext_elaborated_enum_class) in ParseEnumSpecifier()
5523 << FixItHint::CreateRemoval(ScopedEnumKWLoc) << IsScopedUsingClassTag; in ParseEnumSpecifier()
5542 TParams, Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp16984 bool &IsDependent, SourceLocation ScopedEnumKWLoc, in ActOnTag() argument
16996 bool ScopedEnum = ScopedEnumKWLoc.isValid(); in ActOnTag()
17077 ScopedEnum ? SourceRange(KWLoc, ScopedEnumKWLoc) : KWLoc); in ActOnTag()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h3890 SourceLocation ScopedEnumKWLoc,