class CXXDefaultArgExpr
Declaration
class CXXDefaultArgExpr : public Expr { /* full declaration omitted */ };
Description
A default argument (C++ [dcl.fct.default]). This wraps up a function call argument that was created from the corresponding parameter's default argument, when the call did not explicitly supply arguments for all of the parameters.
Declared at: clang/include/clang/AST/ExprCXX.h:1241
Inherits from: Expr
Member Variables
- private clang::ParmVarDecl* Param
- The parameter whose default is being used.
- private clang::DeclContext* UsedContext
- The context where the default argument expression was used.
Inherited from Stmt:
Method Overview
- private CXXDefaultArgExpr(clang::Stmt::StmtClass SC, clang::SourceLocation Loc, clang::ParmVarDecl * Param, clang::DeclContext * UsedContext)
- public CXXDefaultArgExpr(clang::Stmt::EmptyShell Empty)
- public static clang::CXXDefaultArgExpr * Create(const clang::ASTContext & C, clang::SourceLocation Loc, clang::ParmVarDecl * Param, clang::DeclContext * UsedContext)
- 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 const clang::Expr * getExpr() const
- public clang::Expr * getExpr()
- public clang::SourceLocation getExprLoc() const
- public const clang::ParmVarDecl * getParam() const
- public clang::ParmVarDecl * getParam()
- public const clang::DeclContext * getUsedContext() const
- public clang::DeclContext * getUsedContext()
- public clang::SourceLocation getUsedLocation() 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
¶CXXDefaultArgExpr(clang::Stmt::StmtClass SC,
clang::SourceLocation Loc,
clang::ParmVarDecl* Param,
clang::DeclContext* UsedContext)
CXXDefaultArgExpr(clang::Stmt::StmtClass SC,
clang::SourceLocation Loc,
clang::ParmVarDecl* Param,
clang::DeclContext* UsedContext)
Declared at: clang/include/clang/AST/ExprCXX.h:1250
Parameters
- clang::Stmt::StmtClass SC
- clang::SourceLocation Loc
- clang::ParmVarDecl* Param
- clang::DeclContext* UsedContext
¶CXXDefaultArgExpr(clang::Stmt::EmptyShell Empty)
CXXDefaultArgExpr(clang::Stmt::EmptyShell Empty)
Declared at: clang/include/clang/AST/ExprCXX.h:1264
Parameters
- clang::Stmt::EmptyShell Empty
¶static clang::CXXDefaultArgExpr* Create(
const clang::ASTContext& C,
clang::SourceLocation Loc,
clang::ParmVarDecl* Param,
clang::DeclContext* UsedContext)
static clang::CXXDefaultArgExpr* Create(
const clang::ASTContext& C,
clang::SourceLocation Loc,
clang::ParmVarDecl* Param,
clang::DeclContext* UsedContext)
Declared at: clang/include/clang/AST/ExprCXX.h:1268
Parameters
- const clang::ASTContext& C
- clang::SourceLocation Loc
- clang::ParmVarDecl* Param
- clang::DeclContext* UsedContext
¶clang::Stmt::child_range children()
clang::Stmt::child_range children()
Declared at: clang/include/clang/AST/ExprCXX.h:1301
¶clang::Stmt::const_child_range children() const
clang::Stmt::const_child_range children() const
Declared at: clang/include/clang/AST/ExprCXX.h:1305
¶static bool classof(const clang::Stmt* T)
static bool classof(const clang::Stmt* T)
Declared at: clang/include/clang/AST/ExprCXX.h:1296
Parameters
- const clang::Stmt* T
¶clang::SourceLocation getBeginLoc() const
clang::SourceLocation getBeginLoc() const
Description
Default argument expressions have no representation in the source, so they have an empty source range.
Declared at: clang/include/clang/AST/ExprCXX.h:1291
¶clang::SourceLocation getEndLoc() const
clang::SourceLocation getEndLoc() const
Declared at: clang/include/clang/AST/ExprCXX.h:1292
¶const clang::Expr* getExpr() const
const clang::Expr* getExpr() const
Declared at: clang/include/clang/AST/ExprCXX.h:1280
¶clang::Expr* getExpr()
clang::Expr* getExpr()
Declared at: clang/include/clang/AST/ExprCXX.h:1281
¶clang::SourceLocation getExprLoc() const
clang::SourceLocation getExprLoc() const
Declared at: clang/include/clang/AST/ExprCXX.h:1294
¶const clang::ParmVarDecl* getParam() const
const clang::ParmVarDecl* getParam() const
Declared at: clang/include/clang/AST/ExprCXX.h:1276
¶clang::ParmVarDecl* getParam()
clang::ParmVarDecl* getParam()
Declared at: clang/include/clang/AST/ExprCXX.h:1277
¶const clang::DeclContext* getUsedContext() const
const clang::DeclContext* getUsedContext() const
Declared at: clang/include/clang/AST/ExprCXX.h:1283
¶clang::DeclContext* getUsedContext()
clang::DeclContext* getUsedContext()
Declared at: clang/include/clang/AST/ExprCXX.h:1284
¶clang::SourceLocation getUsedLocation() const
clang::SourceLocation getUsedLocation() const
Description
Retrieve the location where this default argument was actually used.
Declared at: clang/include/clang/AST/ExprCXX.h:1287