Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DDeclSpec.cpp573 if (TypeSpecWidth == TSW_unspecified) in SetTypeSpecWidth()
576 else if (W != TSW_longlong || TypeSpecWidth != TSW_long) in SetTypeSpecWidth()
577 return BadSpecifier(W, (TSW)TypeSpecWidth, PrevSpec, DiagID); in SetTypeSpecWidth()
578 TypeSpecWidth = W; in SetTypeSpecWidth()
934 (TypeSpecWidth != TSW_unspecified || in Finish()
955 TypeSpecWidth = TSW_unspecified; in Finish()
983 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short) && in Finish()
984 (TypeSpecWidth != TSW_longlong)) in Finish()
986 << getSpecifierName((TSW)TypeSpecWidth); in Finish()
989 if ((TypeSpecWidth == TSW_longlong) && in Finish()
[all …]
/external/clang/include/clang/Sema/
DDeclSpec.h332 /*TSW*/unsigned TypeSpecWidth : 2; variable
415 TypeSpecWidth(TSW_unspecified), in DeclSpec()
467 TSW getTypeSpecWidth() const { return (TSW)TypeSpecWidth; } in getTypeSpecWidth()