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 318 llvm_unreachable("Invalid TypeSpecType!");
505 if (TypeSpecType == TST_unspecified && S.getLangOpts().CPlusPlus) {
558 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType, Policy);
601 if (TypeSpecType != TST_unspecified) {
602 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType, Policy);
606 TypeSpecType = T;
621 if (TypeSpecType != TST_unspecified) {
622 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType, Policy);
626 TypeSpecType = T;
651 if (TypeSpecType != TST_unspecified)
    [all...]
SemaDecl.cpp     [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 321 /*TST*/unsigned TypeSpecType : 6;
369 /// TSTNameLoc - If TypeSpecType is any of class, enum, struct, union,
409 TypeSpecType(TST_unspecified),
457 TypeSpecType = DeclSpec::TST_unspecified;
466 TST getTypeSpecType() const { return (TST)TypeSpecType; }
472 assert(isTypeRep((TST) TypeSpecType) && "DeclSpec does not store a type");
476 assert(isDeclRep((TST) TypeSpecType) && "DeclSpec does not store a decl");
480 assert(isExprRep((TST) TypeSpecType) && "DeclSpec does not store an expr");
497 assert(isDeclRep((TST) TypeSpecType) || TypeSpecType == TST_typename)
    [all...]

Completed in 60 milliseconds