Package org.eclipse.cdt.core.dom.ast
Interface IASTSimpleDeclSpecifier
-
- All Superinterfaces:
IASTAttributeOwner,IASTDeclSpecifier,IASTNode
- All Known Subinterfaces:
ICASTSimpleDeclSpecifier,ICPPASTSimpleDeclSpecifier,IGCCASTSimpleDeclSpecifier,IGPPASTSimpleDeclSpecifier
public interface IASTSimpleDeclSpecifier extends IASTDeclSpecifier
This represents a declaration specifier for a built-in type.- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode
IASTNode.CopyStyle
-
-
Field Summary
Fields Modifier and Type Field Description static ASTNodePropertyDECLTYPE_EXPRESSIONstatic intt_autoauto c = expression;static intt_boolRepresents a boolean type (bool in c++, _Bool in c)static intt_charchar c;static intt_char16_tchar16_t c;static intt_char32_tchar32_t c;static intt_decimal128_Decimal128 i;static intt_decimal32_Decimal32 i;static intt_decimal64_Decimal64 i;static intt_decltypedecltype('c') c;static intt_decltype_autodecltype(auto) c = expression;static intt_doubledouble d;static intt_floatfloat f;static intt_float128__float128 i;static intt_intint i;static intt_int128__int128 i;static intt_typeoftypeof 'c' c;static intt_unspecifiedUsed for omitted declaration specifiers.static intt_voidvoid x();static intt_wchar_twchar_t c;-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTAttributeOwner
ATTRIBUTE, ATTRIBUTE_SPECIFIER
-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTDeclSpecifier
ALIGNMENT_SPECIFIER, sc_auto, sc_extern, sc_mutable, sc_register, sc_static, sc_typedef, sc_unspecified
-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode
EMPTY_NODE_ARRAY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IASTSimpleDeclSpecifiercopy()Returns a mutable copy of the tree rooted at this node.IASTExpressiongetDeclTypeExpression()Returns the expression for simple declaration specifiers of typet_decltypeort_typeof.intgetType()Returns the built-in type for the declaration.booleanisComplex()_Complex t;booleanisImaginary()_Imaginary t;booleanisLong()long int l;booleanisLongLong()long long int l;booleanisShort()short int s;booleanisSigned()signed char c;booleanisUnsigned()unsigned int u;voidsetComplex(boolean value)Not allowed on frozen ast.voidsetDeclTypeExpression(IASTExpression expression)Not allowed on frozen ast.voidsetImaginary(boolean value)Not allowed on frozen ast.voidsetLong(boolean value)Not allowed on frozen ast.voidsetLongLong(boolean value)Not allowed on frozen ast.voidsetShort(boolean value)Not allowed on frozen ast.voidsetSigned(boolean value)Not allowed on frozen ast.voidsetType(int type)Not allowed on frozen ast.voidsetType(IBasicType.Kind kind)Not allowed on frozen ast.voidsetUnsigned(boolean value)Not allowed on frozen ast.-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTAttributeOwner
addAttribute, addAttributeSpecifier, getAttributes, getAttributeSpecifiers
-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTDeclSpecifier
copy, getAlignmentSpecifiers, getStorageClass, isConst, isInline, isRestrict, isVolatile, setAlignmentSpecifiers, setConst, setInline, setRestrict, setStorageClass, setVolatile
-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode
accept, contains, getChildren, getContainingFilename, getFileLocation, getLeadingSyntax, getNodeLocations, getOriginalNode, getParent, getPropertyInParent, getRawSignature, getSyntax, getTrailingSyntax, getTranslationUnit, isActive, isFrozen, isPartOfTranslationUnitFile, setParent, setPropertyInParent
-
-
-
-
Field Detail
-
DECLTYPE_EXPRESSION
static final ASTNodeProperty DECLTYPE_EXPRESSION
- Since:
- 5.2
-
t_unspecified
static final int t_unspecified
Used for omitted declaration specifiers. E.g. for declaration of constructors, or in plain c, where this defaults to an integer.- See Also:
- Constant Field Values
-
t_void
static final int t_void
void x();- See Also:
- Constant Field Values
-
t_char
static final int t_char
char c;- See Also:
- Constant Field Values
-
t_int
static final int t_int
int i;- See Also:
- Constant Field Values
-
t_float
static final int t_float
float f;- See Also:
- Constant Field Values
-
t_double
static final int t_double
double d;- See Also:
- Constant Field Values
-
t_bool
static final int t_bool
Represents a boolean type (bool in c++, _Bool in c)- Since:
- 5.2
- See Also:
- Constant Field Values
-
t_wchar_t
static final int t_wchar_t
wchar_t c;- Since:
- 5.2
- See Also:
- Constant Field Values
-
t_typeof
static final int t_typeof
typeof 'c' c;- Since:
- 5.2
- See Also:
- Constant Field Values
-
t_decltype
static final int t_decltype
decltype('c') c;- Since:
- 5.2
- See Also:
- Constant Field Values
-
t_auto
static final int t_auto
auto c = expression;- Since:
- 5.2
- See Also:
- Constant Field Values
-
t_char16_t
static final int t_char16_t
char16_t c;- Since:
- 5.2
- See Also:
- Constant Field Values
-
t_char32_t
static final int t_char32_t
char32_t c;- Since:
- 5.2
- See Also:
- Constant Field Values
-
t_int128
static final int t_int128
__int128 i;- Since:
- 5.5
- See Also:
- Constant Field Values
-
t_float128
static final int t_float128
__float128 i;- Since:
- 5.5
- See Also:
- Constant Field Values
-
t_decimal32
static final int t_decimal32
_Decimal32 i;- Since:
- 5.10
- See Also:
- Constant Field Values
-
t_decimal64
static final int t_decimal64
_Decimal64 i;- Since:
- 5.10
- See Also:
- Constant Field Values
-
t_decimal128
static final int t_decimal128
_Decimal128 i;- Since:
- 5.10
- See Also:
- Constant Field Values
-
t_decltype_auto
static final int t_decltype_auto
decltype(auto) c = expression;- Since:
- 6.1
- See Also:
- Constant Field Values
-
-
Method Detail
-
copy
IASTSimpleDeclSpecifier copy()
Description copied from interface:IASTNodeReturns a mutable copy of the tree rooted at this node. The following postconditions hold:copy.getParent() == null copy.getPropertyInParent() == null copy.isFrozen() == false
Preprocessor nodes do not currently support being copied. Implicit name nodes are not copied, instead they can be regenerated if required.Calling this method is equivalent to
copy(CopyStyle.withoutLocations).- Specified by:
copyin interfaceIASTDeclSpecifier- Specified by:
copyin interfaceIASTNode- Since:
- 5.1
-
getType
int getType()
Returns the built-in type for the declaration. The type is then refined by qualifiers for signed/unsigned and short/long. The type could also be unspecified which usually means int.
-
isSigned
boolean isSigned()
signed char c;
-
isUnsigned
boolean isUnsigned()
unsigned int u;
-
isShort
boolean isShort()
short int s;
-
isLong
boolean isLong()
long int l;
-
isLongLong
boolean isLongLong()
long long int l;- Since:
- 5.2
-
isComplex
boolean isComplex()
_Complex t;- Since:
- 5.2
-
isImaginary
boolean isImaginary()
_Imaginary t;- Since:
- 5.2
-
getDeclTypeExpression
IASTExpression getDeclTypeExpression()
Returns the expression for simple declaration specifiers of typet_decltypeort_typeof. Other simple declaration specifiers will returnnull.- Since:
- 5.2
-
setType
void setType(int type)
Not allowed on frozen ast.- See Also:
getType()
-
setType
void setType(IBasicType.Kind kind)
Not allowed on frozen ast. Sets this declaration specifier to the type based onIBasicType.Kind.- Since:
- 5.2
-
setSigned
void setSigned(boolean value)
Not allowed on frozen ast.- See Also:
isSigned()
-
setUnsigned
void setUnsigned(boolean value)
Not allowed on frozen ast.- See Also:
isUnsigned()
-
setShort
void setShort(boolean value)
Not allowed on frozen ast.- See Also:
isShort()
-
setLong
void setLong(boolean value)
Not allowed on frozen ast.- See Also:
isLong()
-
setLongLong
void setLongLong(boolean value)
Not allowed on frozen ast.- Since:
- 5.2
- See Also:
isLongLong()
-
setComplex
void setComplex(boolean value)
Not allowed on frozen ast.- Since:
- 5.2
- See Also:
isComplex()
-
setImaginary
void setImaginary(boolean value)
Not allowed on frozen ast.- Since:
- 5.2
- See Also:
isImaginary()
-
setDeclTypeExpression
void setDeclTypeExpression(IASTExpression expression)
Not allowed on frozen ast.- Since:
- 5.2
- See Also:
getDeclTypeExpression()
-
-