class ConditionalOperator
Declaration
class ConditionalOperator : public AbstractConditionalOperator { /* full declaration omitted */ };
Description
ConditionalOperator - The ?: ternary operator. The GNU "missing middle" extension is a BinaryConditionalOperator.
Declared at: clang/include/clang/AST/Expr.h:4145
Inherits from: AbstractConditionalOperator
Member Variables
- private clang::Stmt* [3] SubExprs
Inherited from Stmt:
Method Overview
- public ConditionalOperator(clang::Expr * cond, clang::SourceLocation QLoc, clang::Expr * lhs, clang::SourceLocation CLoc, clang::Expr * rhs, clang::QualType t, clang::ExprValueKind VK, clang::ExprObjectKind OK)
- public ConditionalOperator(clang::Stmt::EmptyShell Empty)
- 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::Expr * getCond() const
- public clang::SourceLocation getEndLoc() const
- public clang::Expr * getFalseExpr() const
- public clang::Expr * getLHS() const
- public clang::Expr * getRHS() const
- public clang::Expr * getTrueExpr() const
Inherited from AbstractConditionalOperator:
- public classof
- public getColonLoc
- public getCond
- public getFalseExpr
- public getQuestionLoc
- public getTrueExpr
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
¶ConditionalOperator(clang::Expr* cond,
clang::SourceLocation QLoc,
clang::Expr* lhs,
clang::SourceLocation CLoc,
clang::Expr* rhs,
clang::QualType t,
clang::ExprValueKind VK,
clang::ExprObjectKind OK)
ConditionalOperator(clang::Expr* cond,
clang::SourceLocation QLoc,
clang::Expr* lhs,
clang::SourceLocation CLoc,
clang::Expr* rhs,
clang::QualType t,
clang::ExprValueKind VK,
clang::ExprObjectKind OK)
Declared at: clang/include/clang/AST/Expr.h:4151
Parameters
- clang::Expr* cond
- clang::SourceLocation QLoc
- clang::Expr* lhs
- clang::SourceLocation CLoc
- clang::Expr* rhs
- clang::QualType t
- clang::ExprValueKind VK
- clang::ExprObjectKind OK
¶ConditionalOperator(clang::Stmt::EmptyShell Empty)
ConditionalOperator(clang::Stmt::EmptyShell Empty)
Description
Build an empty conditional operator.
Declared at: clang/include/clang/AST/Expr.h:4163
Parameters
- clang::Stmt::EmptyShell Empty
¶clang::Stmt::child_range children()
clang::Stmt::child_range children()
Declared at: clang/include/clang/AST/Expr.h:4194
¶clang::Stmt::const_child_range children() const
clang::Stmt::const_child_range children() const
Declared at: clang/include/clang/AST/Expr.h:4197
¶static bool classof(const clang::Stmt* T)
static bool classof(const clang::Stmt* T)
Declared at: clang/include/clang/AST/Expr.h:4189
Parameters
- const clang::Stmt* T
¶clang::SourceLocation getBeginLoc() const
clang::SourceLocation getBeginLoc() const
Declared at: clang/include/clang/AST/Expr.h:4182
¶clang::Expr* getCond() const
clang::Expr* getCond() const
Declared at: clang/include/clang/AST/Expr.h:4168
¶clang::SourceLocation getEndLoc() const
clang::SourceLocation getEndLoc() const
Declared at: clang/include/clang/AST/Expr.h:4185
¶clang::Expr* getFalseExpr() const
clang::Expr* getFalseExpr() const
Declared at: clang/include/clang/AST/Expr.h:4177
¶clang::Expr* getLHS() const
clang::Expr* getLHS() const
Declared at: clang/include/clang/AST/Expr.h:4179
¶clang::Expr* getRHS() const
clang::Expr* getRHS() const
Declared at: clang/include/clang/AST/Expr.h:4180
¶clang::Expr* getTrueExpr() const
clang::Expr* getTrueExpr() const
Declared at: clang/include/clang/AST/Expr.h:4172