Home | History | Annotate | Download | only in Sema

Lines Matching refs:Specifiers

1 //===--- DeclSpec.h - Parsed declaration specifiers -------------*- C++ -*-===//
12 /// declaration-specifiers and declarators.
17 /// declaration-specifiers \ | /
30 #include "clang/Basic/Specifiers.h"
228 /// \brief Captures information about "declaration specifiers".
230 /// "Declaration specifiers" encompasses storage-class-specifiers,
231 /// type-specifiers, type-qualifiers, and function-specifiers.
318 /// ParsedSpecifiers - Flags to query which specifiers were applied. This is
593 /// \brief Return a bitmask of which flavors of specifiers this
771 /// \brief Captures information about "declaration specifiers" specific to
2185 VirtSpecifiers() : Specifiers(0), LastSpecifier(VS_None) { }
2190 bool isUnset() const { return Specifiers == 0; }
2192 bool isOverrideSpecified() const { return Specifiers & VS_Override; }
2195 bool isFinalSpecified() const { return Specifiers & (VS_Final | VS_Sealed); }
2196 bool isFinalSpelledSealed() const { return Specifiers & VS_Sealed; }
2199 void clear() { Specifiers = 0; }
2208 unsigned Specifiers;