Home
last modified time | relevance | path

Searched refs:TypeSpecWidth (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/Sema/
DDeclSpec.cpp583 if (TypeSpecWidth == TSW_unspecified) in SetTypeSpecWidth()
586 else if (W != TSW_longlong || TypeSpecWidth != TSW_long) in SetTypeSpecWidth()
587 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID); in SetTypeSpecWidth()
588 TypeSpecWidth = W; in SetTypeSpecWidth()
961 (TypeSpecWidth != TSW_unspecified || in Finish()
982 TypeSpecWidth = TSW_unspecified; in Finish()
1010 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short) && in Finish()
1011 (TypeSpecWidth != TSW_longlong)) in Finish()
1013 << getSpecifierName((TSW)TypeSpecWidth); in Finish()
1016 if ((TypeSpecWidth == TSW_longlong) && in Finish()
[all …]
/external/clang/include/clang/Sema/
DDeclSpec.h337 /*TSW*/unsigned TypeSpecWidth : 2; variable
423 TypeSpecWidth(TSW_unspecified), in DeclSpec()
476 TSW getTypeSpecWidth() const { return (TSW)TypeSpecWidth; } in getTypeSpecWidth()