HomeSort by relevance Sort by last modified time
    Searched refs:TypeSpecType (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/Sema/
DeclSpec.cpp 325 llvm_unreachable("Invalid TypeSpecType!");
505 if (TypeSpecType == TST_unspecified && S.getLangOpts().CPlusPlus) {
557 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
598 if (TypeSpecType != TST_unspecified) {
599 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
603 TypeSpecType = T;
617 if (TypeSpecType != TST_unspecified) {
618 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType);
622 TypeSpecType = T;
645 if (TypeSpecType != TST_unspecified)
    [all...]
SemaDecl.cpp     [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 329 /*TST*/unsigned TypeSpecType : 6;
376 /// TSTNameLoc - If TypeSpecType is any of class, enum, struct, union,
415 TypeSpecType(TST_unspecified),
465 TST getTypeSpecType() const { return (TST)TypeSpecType; }
471 assert(isTypeRep((TST) TypeSpecType) && "DeclSpec does not store a type");
475 assert(isDeclRep((TST) TypeSpecType) && "DeclSpec does not store a decl");
479 assert(isExprRep((TST) TypeSpecType) && "DeclSpec does not store an expr");
496 assert(isDeclRep((TST) TypeSpecType) || TypeSpecType == TST_typename);
504 return TypeSpecType == TST_auto || TypeSpecType == TST_decltype_auto
    [all...]

Completed in 287 milliseconds