Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DDeclSpec.cpp509 if (TypeSpecWidth == TSW_unspecified) in SetTypeSpecWidth()
512 else if (W != TSW_longlong || TypeSpecWidth != TSW_long) in SetTypeSpecWidth()
513 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID); in SetTypeSpecWidth()
514 TypeSpecWidth = W; in SetTypeSpecWidth()
516 ((TypeSpecWidth == TSW_long) || (TypeSpecWidth == TSW_longlong))) { in SetTypeSpecWidth()
826 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short)) in Finish()
828 << getSpecifierName((TSW)TypeSpecWidth); in Finish()
832 (TypeSpecWidth != TSW_unspecified)) in Finish()
840 TypeSpecWidth = TSW_short; in Finish()
859 switch (TypeSpecWidth) { in Finish()
[all …]
/external/clang/include/clang/Sema/
DDeclSpec.h306 /*TSW*/unsigned TypeSpecWidth : 2; variable
394 TypeSpecWidth(TSW_unspecified), in DeclSpec()
440 TSW getTypeSpecWidth() const { return (TSW)TypeSpecWidth; } in getTypeSpecWidth()