Home | History | Annotate | Download | only in Sema

Lines Matching defs:Keyword

1379     ElaboratedTypeKeyword Keyword
1381 Result = S.getElaboratedType(Keyword, DS.getTypeSpecScope(), Result);
2725 unsigned Keyword;
2727 case DeclSpec::TST_auto: Keyword = 0; break;
2728 case DeclSpec::TST_decltype_auto: Keyword = 1; break;
2729 case DeclSpec::TST_auto_type: Keyword = 2; break;
2733 << Keyword << Error << AutoRange;
3654 // C99 6.7.5.2p1: The optional type qualifiers and the keyword static
4630 ElaboratedTypeKeyword Keyword
4640 TL.setElaboratedKeywordLoc(Keyword != ETK_None
4827 // FIXME: Provide a source location for the _Atomic keyword.
5013 // The keyword-based type attributes imply which address space to use.
6844 /// \brief Retrieve a version of the type 'T' that is elaborated by Keyword
6846 QualType Sema::getElaboratedType(ElaboratedTypeKeyword Keyword,
6854 if (Keyword == ETK_None)
6858 return Context.getElaboratedType(Keyword, NNS, T);