HomeSort by: relevance | last modified time | path
    Searched refs:TypeSpecifierWidth (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
DeclSpec.cpp 506 const char *DeclSpec::getSpecifierName(TypeSpecifierWidth W) {
508 case TypeSpecifierWidth::Unspecified:
510 case TypeSpecifierWidth::Short:
512 case TypeSpecifierWidth::Long:
514 case TypeSpecifierWidth::LongLong:
693 bool DeclSpec::SetTypeSpecWidth(TypeSpecifierWidth W, SourceLocation Loc,
698 if (getTypeSpecWidth() == TypeSpecifierWidth::Unspecified)
701 else if (W != TypeSpecifierWidth::LongLong ||
702 getTypeSpecWidth() != TypeSpecifierWidth::Long)
1125 (getTypeSpecWidth() != TypeSpecifierWidth::Unspecified |
    [all...]
SemaType.cpp 1387 case TypeSpecifierWidth::Unspecified:
1390 case TypeSpecifierWidth::Short:
1393 case TypeSpecifierWidth::Long:
1396 case TypeSpecifierWidth::LongLong:
1412 case TypeSpecifierWidth::Unspecified:
1415 case TypeSpecifierWidth::Short:
1418 case TypeSpecifierWidth::Long:
1421 case TypeSpecifierWidth::LongLong:
1453 case TypeSpecifierWidth::Short:
1456 case TypeSpecifierWidth::Unspecified
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Specifiers.h 35 enum class TypeSpecifierWidth { Unspecified, Short, Long, LongLong };
92 /*TypeSpecifierWidth*/ unsigned Width : 2;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
TypeLoc.h 618 TypeSpecifierWidth getWrittenWidthSpec() const {
620 return static_cast<TypeSpecifierWidth>(getWrittenBuiltinSpecs().Width);
622 return TypeSpecifierWidth::Unspecified;
626 return getWrittenWidthSpec() != TypeSpecifierWidth::Unspecified;
629 void setWrittenWidthSpec(TypeSpecifierWidth written) {
662 wbs.Width = static_cast<unsigned>(TypeSpecifierWidth::Unspecified);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h 332 /*TypeSpecifierWidth*/ unsigned TypeSpecWidth : 2;
425 TypeSpecWidth(static_cast<unsigned>(TypeSpecifierWidth::Unspecified)),
469 TypeSpecifierWidth getTypeSpecWidth() const {
470 return static_cast<TypeSpecifierWidth>(TypeSpecWidth);
539 static const char *getSpecifierName(TypeSpecifierWidth W);
623 getTypeSpecWidth() != TypeSpecifierWidth::Unspecified ||
656 bool SetTypeSpecWidth(TypeSpecifierWidth W, SourceLocation Loc,
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp 2182 DS.SetTypeSpecWidth(TypeSpecifierWidth::Short, Loc, PrevSpec, DiagID,
2186 DS.SetTypeSpecWidth(TypeSpecifierWidth::Long, Loc, PrevSpec, DiagID,
2190 DS.SetTypeSpecWidth(TypeSpecifierWidth::LongLong, Loc, PrevSpec, DiagID,
ParseDecl.cpp 3779 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::Short, Loc, PrevSpec,
3783 if (DS.getTypeSpecWidth() != TypeSpecifierWidth::Long)
3784 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::Long, Loc, PrevSpec,
3787 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::LongLong, Loc,
3791 isInvalid = DS.SetTypeSpecWidth(TypeSpecifierWidth::LongLong, Loc,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 6488 TL.setWrittenWidthSpec(static_cast<TypeSpecifierWidth>(Reader.readInt()));

Completed in 48 milliseconds