Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DDeclSpec.cpp663 if (TypeSpecWidth == TSW_unspecified) in SetTypeSpecWidth()
668 TypeSpecWidth = W; in SetTypeSpecWidth()
1041 (TypeSpecWidth != TSW_unspecified || in Finish()
1062 TypeSpecWidth = TSW_unspecified; in Finish()
1090 if ((TypeSpecWidth != TSW_unspecified) && (TypeSpecWidth != TSW_short) && in Finish()
1091 (TypeSpecWidth != TSW_longlong)) in Finish()
1096 if ((TypeSpecWidth == TSW_longlong) && in Finish()
1109 if (TypeSpecWidth == TSW_long || TypeSpecWidth == TSW_longlong) in Finish()
1121 } else if (TypeSpecWidth == TSW_long) { in Finish()
1135 TypeSpecWidth = TSW_short; in Finish()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DDeclSpec.h342 /*TSW*/unsigned TypeSpecWidth : 2; variable
427 TypeSpecWidth(TSW_unspecified), in DeclSpec()
480 TSW getTypeSpecWidth() const { return (TSW)TypeSpecWidth; } in getTypeSpecWidth()