Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDDeclSpec.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()
936 (TypeSpecWidth != TSW_unspecified || in Finish()
957 TypeSpecWidth = TSW_unspecified; in Finish()
985 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short) && in Finish()
986 (TypeSpecWidth != TSW_longlong)) in Finish()
988 << getSpecifierName((TSW)TypeSpecWidth); in Finish()
991 if ((TypeSpecWidth == TSW_longlong) && in Finish()
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDDeclSpec.h336 /*TSW*/unsigned TypeSpecWidth : 2; variable
419 TypeSpecWidth(TSW_unspecified), in DeclSpec()
471 TSW getTypeSpecWidth() const { return (TSW)TypeSpecWidth; } in getTypeSpecWidth()