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 342 llvm_unreachable("Invalid TypeSpecType!");
530 if (TypeSpecType == TST_unspecified && S.getLangOpts().CPlusPlus) {
620 if (TypeSpecType != TST_unspecified) {
621 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType, Policy);
625 TypeSpecType = T;
640 if (TypeSpecType != TST_unspecified) {
641 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType, Policy);
645 TypeSpecType = T;
670 if (TypeSpecType != TST_unspecified) {
671 PrevSpec = DeclSpec::getSpecifierName((TST) TypeSpecType, Policy)
    [all...]
SemaDecl.cpp     [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 338 /*TST*/unsigned TypeSpecType : 6;
386 /// TSTNameLoc - If TypeSpecType is any of class, enum, struct, union,
426 TypeSpecType(TST_unspecified),
474 TypeSpecType = DeclSpec::TST_unspecified;
483 TST getTypeSpecType() const { return (TST)TypeSpecType; }
489 assert(isTypeRep((TST) TypeSpecType) && "DeclSpec does not store a type");
493 assert(isDeclRep((TST) TypeSpecType) && "DeclSpec does not store a decl");
497 assert(isExprRep((TST) TypeSpecType) && "DeclSpec does not store an expr");
514 assert(isDeclRep((TST) TypeSpecType) || TypeSpecType == TST_typename)
    [all...]

Completed in 42 milliseconds