Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DDeclSpec.cpp530 if (TypeSpecWidth == TSW_unspecified) in SetTypeSpecWidth()
533 else if (W != TSW_longlong || TypeSpecWidth != TSW_long) in SetTypeSpecWidth()
534 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID); in SetTypeSpecWidth()
535 TypeSpecWidth = W; in SetTypeSpecWidth()
537 ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) { in SetTypeSpecWidth()
850 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short)) in Finish()
852 << getSpecifierName((TSW)TypeSpecWidth); in Finish()
856 (TypeSpecWidth != TSW_unspecified)) in Finish()
864 TypeSpecWidth = TSW_short; in Finish()
883 switch (TypeSpecWidth) { in Finish()
[all …]
/external/clang/include/clang/Sema/
DDeclSpec.h314 /*TSW*/unsigned TypeSpecWidth : 2; variable
403 TypeSpecWidth(TSW_unspecified), in DeclSpec()
450 TSW getTypeSpecWidth() const { return (TSW)TypeSpecWidth; } in getTypeSpecWidth()