class FixedPointLiteral
Declaration
class FixedPointLiteral : public Expr, public APIntStorage { /* full declaration omitted */ };
Description
This represents one expression. Note that Expr's are subclasses of Stmt. This allows an expression to be transparently used any place a Stmt is required.
Declared at: clang/include/clang/AST/Expr.h:1537
Inherits from: Expr, APIntStorage
Member Variables
- private clang::SourceLocation Loc
- private unsigned int Scale
Inherited from Stmt:
Method Overview
- public static clang::FixedPointLiteral * Create(const clang::ASTContext & C, clang::Stmt::EmptyShell Empty)
- public static clang::FixedPointLiteral * CreateFromRawInt(const clang::ASTContext & C, const llvm::APInt & V, clang::QualType type, clang::SourceLocation l, unsigned int Scale)
- private FixedPointLiteral(clang::Stmt::EmptyShell Empty)
- public FixedPointLiteral(const clang::ASTContext & C, const llvm::APInt & V, clang::QualType type, clang::SourceLocation l, unsigned int Scale)
- public clang::Stmt::child_range children()
- public clang::Stmt::const_child_range children() const
- public static bool classof(const clang::Stmt * T)
- public clang::SourceLocation getBeginLoc() const
- public clang::SourceLocation getEndLoc() const
- public clang::SourceLocation getLocation() const
- public unsigned int getScale() const
- public std::string getValueAsString(unsigned int Radix) const
- public void setLocation(clang::SourceLocation Location)
- public void setScale(unsigned int S)
Inherited from APIntStorage:
Inherited from Expr:
- public Classify
- public ClassifyLValue
- public ClassifyModifiable
- public EvaluateAsBooleanCondition
- public EvaluateAsConstantExpr
- public EvaluateAsFixedPoint
- public EvaluateAsFloat
- public EvaluateAsInitializer
- public EvaluateAsInt
- public EvaluateAsLValue
- public EvaluateAsRValue
- public EvaluateForOverflow
- public EvaluateKnownConstInt
- public EvaluateKnownConstIntCheckOverflow
- public EvaluateWithSubstitution
- public HasSideEffects
- public IgnoreCasts
- public IgnoreCasts
- public IgnoreConversionOperatorSingleStep
- public IgnoreConversionOperatorSingleStep
- public IgnoreImpCasts
- public IgnoreImpCasts
- public IgnoreImplicit
- public IgnoreImplicit
- public IgnoreImplicitAsWritten
- public IgnoreImplicitAsWritten
- public IgnoreParenBaseCasts
- public IgnoreParenBaseCasts
- public IgnoreParenCasts
- public IgnoreParenCasts
- public IgnoreParenImpCasts
- public IgnoreParenImpCasts
- public IgnoreParenLValueCasts
- public IgnoreParenLValueCasts
- public IgnoreParenNoopCasts
- public IgnoreParenNoopCasts
- public IgnoreParens
- public IgnoreParens
- public IgnoreUnlessSpelledInSource
- public IgnoreUnlessSpelledInSource
- public classof
- public containsErrors
- public containsUnexpandedParameterPack
- public findBoundMemberType
- public getAsBuiltinConstantDeclRef
- public getBestDynamicClassType
- public getBestDynamicClassTypeExpr
- public getDependence
- public getExprLoc
- public getFPFeaturesInEffect
- public getIntegerConstantExpr
- public getObjCProperty
- public getObjectKind
- public getReferencedDeclOfCallee
- public getReferencedDeclOfCallee
- public getSourceBitField
- public getSourceBitField
- public getType
- public getValueKind
- public getValueKindForType
- public hasAnyTypeDependentArguments
- public hasNonTrivialCall
- public hasPlaceholderType
- public hasPlaceholderType
- public isBoundMemberFunction
- public isCXX11ConstantExpr
- public isCXX98IntegralConstantExpr
- public isConstantInitializer
- public isDefaultArgument
- public isEvaluatable
- public isGLValue
- public isImplicitCXXThis
- public isInstantiationDependent
- public isIntegerConstantExpr
- public isKnownToHaveBooleanValue
- public isLValue
- public isModifiableLvalue
- public isNullPointerConstant
- public isOBJCGCCandidate
- public isObjCSelfExpr
- public isOrdinaryOrBitFieldObject
- public isPRValue
- public isPotentialConstantExpr
- public isPotentialConstantExprUnevaluated
- public isReadIfDiscardedInCPlusPlus11
- public isSameComparisonOperand
- public isTemporaryObject
- public isTypeDependent
- public isUnusedResultAWarning
- public isValueDependent
- public isXValue
- public refersToBitField
- public refersToGlobalRegisterVar
- public refersToMatrixElement
- public refersToVectorElement
- protected setDependence
- public setObjectKind
- public setType
- public setValueKind
- public skipRValueSubobjectAdjustments
- public skipRValueSubobjectAdjustments
- public tryEvaluateObjectSize
- public tryEvaluateStrLen
Inherited from ValueStmt:
Inherited from Stmt:
- public EnableStatistics
- public IgnoreContainers
- public IgnoreContainers
- public PrintStats
- public ProcessODRHash
- public Profile
- public addStmtClass
- public child_begin
- public child_begin
- public child_end
- public child_end
- public children
- public children
- public determineLikelihoodConflict
- public dump
- public dump
- public dumpColor
- public dumpPretty
- public getBeginLoc
- public getEndLoc
- public getID
- public getLikelihood
- public getLikelihood
- public getLikelihood
- public getLikelihoodAttr
- public getSourceRange
- public getStmtClass
- public getStmtClassName
- public printJson
- public printPretty
- public printPrettyControlled
- public stripLabelLikeStatements
- public stripLabelLikeStatements
- public viewAST
Methods
¶static clang::FixedPointLiteral* Create(
const clang::ASTContext& C,
clang::Stmt::EmptyShell Empty)
static clang::FixedPointLiteral* Create(
const clang::ASTContext& C,
clang::Stmt::EmptyShell Empty)
Description
Returns an empty fixed-point literal.
Declared at: clang/include/clang/AST/Expr.h:1556
Parameters
- const clang::ASTContext& C
- clang::Stmt::EmptyShell Empty
¶static clang::FixedPointLiteral* CreateFromRawInt(
const clang::ASTContext& C,
const llvm::APInt& V,
clang::QualType type,
clang::SourceLocation l,
unsigned int Scale)
static clang::FixedPointLiteral* CreateFromRawInt(
const clang::ASTContext& C,
const llvm::APInt& V,
clang::QualType type,
clang::SourceLocation l,
unsigned int Scale)
Declared at: clang/include/clang/AST/Expr.h:1550
Parameters
- const clang::ASTContext& C
- const llvm::APInt& V
- clang::QualType type
- clang::SourceLocation l
- unsigned int Scale
¶FixedPointLiteral(clang::Stmt::EmptyShell Empty)
FixedPointLiteral(clang::Stmt::EmptyShell Empty)
Description
Construct an empty fixed-point literal.
Declared at: clang/include/clang/AST/Expr.h:1542
Parameters
- clang::Stmt::EmptyShell Empty
¶FixedPointLiteral(const clang::ASTContext& C,
const llvm::APInt& V,
clang::QualType type,
clang::SourceLocation l,
unsigned int Scale)
FixedPointLiteral(const clang::ASTContext& C,
const llvm::APInt& V,
clang::QualType type,
clang::SourceLocation l,
unsigned int Scale)
Declared at: clang/include/clang/AST/Expr.h:1546
Parameters
- const clang::ASTContext& C
- const llvm::APInt& V
- clang::QualType type
- clang::SourceLocation l
- unsigned int Scale
¶clang::Stmt::child_range children()
clang::Stmt::child_range children()
Declared at: clang/include/clang/AST/Expr.h:1576
¶clang::Stmt::const_child_range children() const
clang::Stmt::const_child_range children() const
Declared at: clang/include/clang/AST/Expr.h:1579
¶static bool classof(const clang::Stmt* T)
static bool classof(const clang::Stmt* T)
Declared at: clang/include/clang/AST/Expr.h:1569
Parameters
- const clang::Stmt* T
¶clang::SourceLocation getBeginLoc() const
clang::SourceLocation getBeginLoc() const
Declared at: clang/include/clang/AST/Expr.h:1558
¶clang::SourceLocation getEndLoc() const
clang::SourceLocation getEndLoc() const
Declared at: clang/include/clang/AST/Expr.h:1559
¶clang::SourceLocation getLocation() const
clang::SourceLocation getLocation() const
Description
Retrieve the location of the literal.
Declared at: clang/include/clang/AST/Expr.h:1562
¶unsigned int getScale() const
unsigned int getScale() const
Declared at: clang/include/clang/AST/Expr.h:1566
¶std::string getValueAsString(
unsigned int Radix) const
std::string getValueAsString(
unsigned int Radix) const
Declared at: clang/include/clang/AST/Expr.h:1573
Parameters
- unsigned int Radix
¶void setLocation(clang::SourceLocation Location)
void setLocation(clang::SourceLocation Location)
Declared at: clang/include/clang/AST/Expr.h:1564
Parameters
- clang::SourceLocation Location
¶void setScale(unsigned int S)
void setScale(unsigned int S)
Declared at: clang/include/clang/AST/Expr.h:1567
Parameters
- unsigned int S