Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DDeclSpec.cpp524 case TypeSpecifierWidth::Unspecified: in getSpecifierName()
526 case TypeSpecifierWidth::Short: in getSpecifierName()
528 case TypeSpecifierWidth::Long: in getSpecifierName()
530 case TypeSpecifierWidth::LongLong: in getSpecifierName()
722 else if (W != TypeSpecifierWidth::LongLong || in SetTypeSpecWidth()
723 getTypeSpecWidth() != TypeSpecifierWidth::Long) in SetTypeSpecWidth()
1225 if (getTypeSpecWidth() == TypeSpecifierWidth::Long || in Finish()
1284 case TypeSpecifierWidth::Unspecified: in Finish()
1286 case TypeSpecifierWidth::Short: // short int in Finish()
1287 case TypeSpecifierWidth::LongLong: // long long int in Finish()
[all …]
H A DSemaType.cpp1409 case TypeSpecifierWidth::Short: in ConvertDeclSpecToType()
1412 case TypeSpecifierWidth::Long: in ConvertDeclSpecToType()
1415 case TypeSpecifierWidth::LongLong: in ConvertDeclSpecToType()
1434 case TypeSpecifierWidth::Short: in ConvertDeclSpecToType()
1437 case TypeSpecifierWidth::Long: in ConvertDeclSpecToType()
1471 case TypeSpecifierWidth::Short: in ConvertDeclSpecToType()
1477 case TypeSpecifierWidth::Long: in ConvertDeclSpecToType()
1480 case TypeSpecifierWidth::LongLong: in ConvertDeclSpecToType()
1494 case TypeSpecifierWidth::Short: in ConvertDeclSpecToType()
1500 case TypeSpecifierWidth::Long: in ConvertDeclSpecToType()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DSpecifiers.h47 enum class TypeSpecifierWidth { Unspecified, Short, Long, LongLong }; enum
110 LLVM_PREFERRED_TYPE(TypeSpecifierWidth)
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DTypeLoc.h623 TypeSpecifierWidth getWrittenWidthSpec() const { in getWrittenWidthSpec()
625 return static_cast<TypeSpecifierWidth>(getWrittenBuiltinSpecs().Width); in getWrittenWidthSpec()
627 return TypeSpecifierWidth::Unspecified; in getWrittenWidthSpec()
631 return getWrittenWidthSpec() != TypeSpecifierWidth::Unspecified; in hasWrittenWidthSpec()
634 void setWrittenWidthSpec(TypeSpecifierWidth written) { in setWrittenWidthSpec()
667 wbs.Width = static_cast<unsigned>(TypeSpecifierWidth::Unspecified); in initializeLocal()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h461 TypeSpecWidth(static_cast<unsigned>(TypeSpecifierWidth::Unspecified)), in DeclSpec()
504 TypeSpecifierWidth getTypeSpecWidth() const { in getTypeSpecWidth()
505 return static_cast<TypeSpecifierWidth>(TypeSpecWidth); in getTypeSpecWidth()
575 static const char *getSpecifierName(TypeSpecifierWidth W);
659 getTypeSpecWidth() != TypeSpecifierWidth::Unspecified || in hasTypeSpecifier()
692 bool SetTypeSpecWidth(TypeSpecifierWidth W, SourceLocation Loc,
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp2278 DS.SetTypeSpecWidth(TypeSpecifierWidth::Short, Loc, PrevSpec, DiagID, in ParseCXXSimpleTypeSpecifier()
2282 DS.SetTypeSpecWidth(TypeSpecifierWidth::Long, Loc, PrevSpec, DiagID, in ParseCXXSimpleTypeSpecifier()
2286 DS.SetTypeSpecWidth(TypeSpecifierWidth::LongLong, Loc, PrevSpec, DiagID, in ParseCXXSimpleTypeSpecifier()
H A DParseDecl.cpp4190 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::Short, Loc, PrevSpec, in ParseDeclarationSpecifiers()
4194 if (DS.getTypeSpecWidth() != TypeSpecifierWidth::Long) in ParseDeclarationSpecifiers()
4195 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::Long, Loc, PrevSpec, in ParseDeclarationSpecifiers()
4198 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::LongLong, Loc, in ParseDeclarationSpecifiers()
4202 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::LongLong, Loc, in ParseDeclarationSpecifiers()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp6791 TL.setWrittenWidthSpec(static_cast<TypeSpecifierWidth>(Reader.readInt())); in VisitBuiltinTypeLoc()