class ParenListExpr
Declaration
class ParenListExpr : public Expr, private TrailingObjects { /* 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:5537
Inherits from: Expr, TrailingObjects
Member Variables
- private clang::SourceLocation LParenLoc
- The location of the left and right parentheses.
- private clang::SourceLocation RParenLoc
- The location of the left and right parentheses.
Inherited from Stmt:
Method Overview
- public static clang::ParenListExpr * Create(const clang::ASTContext & Ctx, clang::SourceLocation LParenLoc, ArrayRef<clang::Expr *> Exprs, clang::SourceLocation RParenLoc)
- public static clang::ParenListExpr * CreateEmpty(const clang::ASTContext & Ctx, unsigned int NumExprs)
- private ParenListExpr(clang::SourceLocation LParenLoc, ArrayRef<clang::Expr *> Exprs, clang::SourceLocation RParenLoc)
- private ParenListExpr(clang::Stmt::EmptyShell Empty, unsigned int NumExprs)
- public clang::Stmt::child_range children()
- public clang::Stmt::const_child_range children() const
- public static bool classof(const clang::Stmt * T)
- public ArrayRef<clang::Expr *> exprs()
- public clang::SourceLocation getBeginLoc() const
- public clang::SourceLocation getEndLoc() const
- public clang::Expr * getExpr(unsigned int Init)
- public const clang::Expr * getExpr(unsigned int Init) const
- public clang::Expr ** getExprs()
- public clang::SourceLocation getLParenLoc() const
- public unsigned int getNumExprs() const
- public clang::SourceLocation getRParenLoc() const
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::ParenListExpr* Create(
const clang::ASTContext& Ctx,
clang::SourceLocation LParenLoc,
ArrayRef<clang::Expr*> Exprs,
clang::SourceLocation RParenLoc)
static clang::ParenListExpr* Create(
const clang::ASTContext& Ctx,
clang::SourceLocation LParenLoc,
ArrayRef<clang::Expr*> Exprs,
clang::SourceLocation RParenLoc)
Description
Create a paren list.
Declared at: clang/include/clang/AST/Expr.h:5555
Parameters
- const clang::ASTContext& Ctx
- clang::SourceLocation LParenLoc
- ArrayRef<clang::Expr*> Exprs
- clang::SourceLocation RParenLoc
¶static clang::ParenListExpr* CreateEmpty(
const clang::ASTContext& Ctx,
unsigned int NumExprs)
static clang::ParenListExpr* CreateEmpty(
const clang::ASTContext& Ctx,
unsigned int NumExprs)
Description
Create an empty paren list.
Declared at: clang/include/clang/AST/Expr.h:5560
Parameters
- const clang::ASTContext& Ctx
- unsigned int NumExprs
¶ParenListExpr(clang::SourceLocation LParenLoc,
ArrayRef<clang::Expr*> Exprs,
clang::SourceLocation RParenLoc)
ParenListExpr(clang::SourceLocation LParenLoc,
ArrayRef<clang::Expr*> Exprs,
clang::SourceLocation RParenLoc)
Description
Build a paren list.
Declared at: clang/include/clang/AST/Expr.h:5547
Parameters
- clang::SourceLocation LParenLoc
- ArrayRef<clang::Expr*> Exprs
- clang::SourceLocation RParenLoc
¶ParenListExpr(clang::Stmt::EmptyShell Empty,
unsigned int NumExprs)
ParenListExpr(clang::Stmt::EmptyShell Empty,
unsigned int NumExprs)
Description
Build an empty paren list.
Declared at: clang/include/clang/AST/Expr.h:5551
Parameters
- clang::Stmt::EmptyShell Empty
- unsigned int NumExprs
¶clang::Stmt::child_range children()
clang::Stmt::child_range children()
Declared at: clang/include/clang/AST/Expr.h:5592
¶clang::Stmt::const_child_range children() const
clang::Stmt::const_child_range children() const
Declared at: clang/include/clang/AST/Expr.h:5596
¶static bool classof(const clang::Stmt* T)
static bool classof(const clang::Stmt* T)
Declared at: clang/include/clang/AST/Expr.h:5587
Parameters
- const clang::Stmt* T
¶ArrayRef<clang::Expr*> exprs()
ArrayRef<clang::Expr*> exprs()
Declared at: clang/include/clang/AST/Expr.h:5578
¶clang::SourceLocation getBeginLoc() const
clang::SourceLocation getBeginLoc() const
Declared at: clang/include/clang/AST/Expr.h:5584
¶clang::SourceLocation getEndLoc() const
clang::SourceLocation getEndLoc() const
Declared at: clang/include/clang/AST/Expr.h:5585
¶clang::Expr* getExpr(unsigned int Init)
clang::Expr* getExpr(unsigned int Init)
Declared at: clang/include/clang/AST/Expr.h:5565
Parameters
- unsigned int Init
¶const clang::Expr* getExpr(
unsigned int Init) const
const clang::Expr* getExpr(
unsigned int Init) const
Declared at: clang/include/clang/AST/Expr.h:5570
Parameters
- unsigned int Init
¶clang::Expr** getExprs()
clang::Expr** getExprs()
Declared at: clang/include/clang/AST/Expr.h:5574
¶clang::SourceLocation getLParenLoc() const
clang::SourceLocation getLParenLoc() const
Declared at: clang/include/clang/AST/Expr.h:5582
¶unsigned int getNumExprs() const
unsigned int getNumExprs() const
Description
Return the number of expressions in this paren list.
Declared at: clang/include/clang/AST/Expr.h:5563
¶clang::SourceLocation getRParenLoc() const
clang::SourceLocation getRParenLoc() const
Declared at: clang/include/clang/AST/Expr.h:5583