Home | History | Annotate | Download | only in Sema

Lines Matching defs:Keyword

1461     ElaboratedTypeKeyword Keyword
1463 Result = S.getElaboratedType(Keyword, DS.getTypeSpecScope(), Result);
2937 unsigned Keyword;
2939 case DeclSpec::TST_auto: Keyword = 0; break;
2940 case DeclSpec::TST_decltype_auto: Keyword = 1; break;
2941 case DeclSpec::TST_auto_type: Keyword = 2; break;
2945 << Keyword << Error << AutoRange;
3911 // C99 6.7.5.2p1: The optional type qualifiers and the keyword static
4919 ElaboratedTypeKeyword Keyword
4929 TL.setElaboratedKeywordLoc(Keyword != ETK_None
5129 // FIXME: Provide a source location for the _Atomic keyword.
5314 // The keyword-based type attributes imply which address space to use.
7210 /// \brief Retrieve a version of the type 'T' that is elaborated by Keyword
7212 QualType Sema::getElaboratedType(ElaboratedTypeKeyword Keyword,
7220 if (Keyword == ETK_None)
7224 return Context.getElaboratedType(Keyword, NNS, T);