Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DDeclSpec.cpp575 if (TypeSpecWidth == TSW_unspecified) in SetTypeSpecWidth()
578 else if (W != TSW_longlong || TypeSpecWidth != TSW_long) in SetTypeSpecWidth()
579 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID); in SetTypeSpecWidth()
580 TypeSpecWidth = W; in SetTypeSpecWidth()
938 (TypeSpecWidth != TSW_unspecified || in Finish()
959 TypeSpecWidth = TSW_unspecified; in Finish()
987 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short) && in Finish()
988 (TypeSpecWidth != TSW_longlong)) in Finish()
990 << getSpecifierName((TSW)TypeSpecWidth); in Finish()
993 if ((TypeSpecWidth == TSW_longlong) && in Finish()
[all …]
/external/clang/include/clang/Sema/
DDeclSpec.h335 /*TSW*/unsigned TypeSpecWidth : 2; variable
423 TypeSpecWidth(TSW_unspecified), in DeclSpec()
480 TSW getTypeSpecWidth() const { return (TSW)TypeSpecWidth; } in getTypeSpecWidth()