Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp508 case TypeSpecifierWidth::Unspecified: in getSpecifierName()
510 case TypeSpecifierWidth::Short: in getSpecifierName()
512 case TypeSpecifierWidth::Long: in getSpecifierName()
514 case TypeSpecifierWidth::LongLong: in getSpecifierName()
701 else if (W != TypeSpecifierWidth::LongLong || in SetTypeSpecWidth()
702 getTypeSpecWidth() != TypeSpecifierWidth::Long) in SetTypeSpecWidth()
1201 if (getTypeSpecWidth() == TypeSpecifierWidth::Long || in Finish()
1258 case TypeSpecifierWidth::Unspecified: in Finish()
1260 case TypeSpecifierWidth::Short: // short int in Finish()
1261 case TypeSpecifierWidth::LongLong: // long long int in Finish()
[all …]
H A DSemaType.cpp1391 case TypeSpecifierWidth::Short: in ConvertDeclSpecToType()
1394 case TypeSpecifierWidth::Long: in ConvertDeclSpecToType()
1397 case TypeSpecifierWidth::LongLong: in ConvertDeclSpecToType()
1416 case TypeSpecifierWidth::Short: in ConvertDeclSpecToType()
1419 case TypeSpecifierWidth::Long: in ConvertDeclSpecToType()
1454 case TypeSpecifierWidth::Short: in ConvertDeclSpecToType()
1460 case TypeSpecifierWidth::Long: in ConvertDeclSpecToType()
1463 case TypeSpecifierWidth::LongLong: in ConvertDeclSpecToType()
1477 case TypeSpecifierWidth::Short: in ConvertDeclSpecToType()
1483 case TypeSpecifierWidth::Long: in ConvertDeclSpecToType()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DSpecifiers.h35 enum class TypeSpecifierWidth { Unspecified, Short, Long, LongLong }; enum
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DTypeLoc.h618 TypeSpecifierWidth getWrittenWidthSpec() const { in getWrittenWidthSpec()
620 return static_cast<TypeSpecifierWidth>(getWrittenBuiltinSpecs().Width); in getWrittenWidthSpec()
622 return TypeSpecifierWidth::Unspecified; in getWrittenWidthSpec()
626 return getWrittenWidthSpec() != TypeSpecifierWidth::Unspecified; in hasWrittenWidthSpec()
629 void setWrittenWidthSpec(TypeSpecifierWidth written) { in setWrittenWidthSpec()
662 wbs.Width = static_cast<unsigned>(TypeSpecifierWidth::Unspecified); in initializeLocal()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h425 TypeSpecWidth(static_cast<unsigned>(TypeSpecifierWidth::Unspecified)), in DeclSpec()
469 TypeSpecifierWidth getTypeSpecWidth() const { in getTypeSpecWidth()
470 return static_cast<TypeSpecifierWidth>(TypeSpecWidth); in getTypeSpecWidth()
539 static const char *getSpecifierName(TypeSpecifierWidth W);
623 getTypeSpecWidth() != TypeSpecifierWidth::Unspecified || in hasTypeSpecifier()
656 bool SetTypeSpecWidth(TypeSpecifierWidth W, SourceLocation Loc,
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp2182 DS.SetTypeSpecWidth(TypeSpecifierWidth::Short, Loc, PrevSpec, DiagID, in ParseCXXSimpleTypeSpecifier()
2186 DS.SetTypeSpecWidth(TypeSpecifierWidth::Long, Loc, PrevSpec, DiagID, in ParseCXXSimpleTypeSpecifier()
2190 DS.SetTypeSpecWidth(TypeSpecifierWidth::LongLong, Loc, PrevSpec, DiagID, in ParseCXXSimpleTypeSpecifier()
H A DParseDecl.cpp3786 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::Short, Loc, PrevSpec, in ParseDeclarationSpecifiers()
3790 if (DS.getTypeSpecWidth() != TypeSpecifierWidth::Long) in ParseDeclarationSpecifiers()
3791 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::Long, Loc, PrevSpec, in ParseDeclarationSpecifiers()
3794 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::LongLong, Loc, in ParseDeclarationSpecifiers()
3798 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::LongLong, Loc, in ParseDeclarationSpecifiers()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp6510 TL.setWrittenWidthSpec(static_cast<TypeSpecifierWidth>(Reader.readInt())); in VisitBuiltinTypeLoc()