class ObjCBridgedCastExpr
Declaration
class ObjCBridgedCastExpr : public ExplicitCastExpr,
private TrailingObjects { /* full declaration omitted */ };
Description
An Objective-C "bridged" cast expression, which casts between Objective-C pointers and C pointers, transferring ownership in the process.
Declared at: clang/include/clang/AST/ExprObjC.h:1625
Inherits from: ExplicitCastExpr, TrailingObjects
Member Variables
- private clang::SourceLocation LParenLoc
- private clang::SourceLocation BridgeKeywordLoc
- private unsigned int Kind
Inherited from Stmt:
Method Overview
- public ObjCBridgedCastExpr(clang::SourceLocation LParenLoc, clang::ObjCBridgeCastKind Kind, clang::CastKind CK, clang::SourceLocation BridgeKeywordLoc, clang::TypeSourceInfo * TSInfo, clang::Expr * Operand)
- public ObjCBridgedCastExpr(clang::Stmt::EmptyShell Shell)
- public static bool classof(const clang::Stmt * T)
- public clang::SourceLocation getBeginLoc() const
- public clang::SourceLocation getBridgeKeywordLoc() const
- public clang::ObjCBridgeCastKind getBridgeKind() const
- public llvm::StringRef getBridgeKindName() const
- public clang::SourceLocation getEndLoc() const
- public clang::SourceLocation getLParenLoc() const
Inherited from ExplicitCastExpr:
Inherited from CastExpr:
- public children
- public children
- public classof
- public getCastKind
- public getCastKindName
- public getCastKindName
- public getConversionFunction
- public getFPFeatures
- public getFPFeaturesInEffect
- public getStoredFPFeatures
- public getSubExpr
- public getSubExpr
- public getSubExprAsWritten
- public getSubExprAsWritten
- public getTargetFieldForToUnionCast
- public getTargetFieldForToUnionCast
- public getTargetUnionField
- protected getTrailingFPFeatures
- protected getTrailingFPFeatures
- public hasStoredFPFeatures
- public path
- public path
- public path_begin
- public path_begin
- public path_empty
- public path_end
- public path_end
- public path_size
- public setCastKind
- public setSubExpr
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
¶ObjCBridgedCastExpr(
clang::SourceLocation LParenLoc,
clang::ObjCBridgeCastKind Kind,
clang::CastKind CK,
clang::SourceLocation BridgeKeywordLoc,
clang::TypeSourceInfo* TSInfo,
clang::Expr* Operand)
ObjCBridgedCastExpr(
clang::SourceLocation LParenLoc,
clang::ObjCBridgeCastKind Kind,
clang::CastKind CK,
clang::SourceLocation BridgeKeywordLoc,
clang::TypeSourceInfo* TSInfo,
clang::Expr* Operand)
Declared at: clang/include/clang/AST/ExprObjC.h:1638
Parameters
- clang::SourceLocation LParenLoc
- clang::ObjCBridgeCastKind Kind
- clang::CastKind CK
- clang::SourceLocation BridgeKeywordLoc
- clang::TypeSourceInfo* TSInfo
- clang::Expr* Operand
¶ObjCBridgedCastExpr(clang::Stmt::EmptyShell Shell)
ObjCBridgedCastExpr(clang::Stmt::EmptyShell Shell)
Description
Construct an empty Objective-C bridged cast.
Declared at: clang/include/clang/AST/ExprObjC.h:1646
Parameters
- clang::Stmt::EmptyShell Shell
¶static bool classof(const clang::Stmt* T)
static bool classof(const clang::Stmt* T)
Declared at: clang/include/clang/AST/ExprObjC.h:1668
Parameters
- const clang::Stmt* T
¶clang::SourceLocation getBeginLoc() const
clang::SourceLocation getBeginLoc() const
Declared at: clang/include/clang/AST/ExprObjC.h:1662
¶clang::SourceLocation getBridgeKeywordLoc() const
clang::SourceLocation getBridgeKeywordLoc() const
Description
The location of the bridge keyword.
Declared at: clang/include/clang/AST/ExprObjC.h:1660
¶clang::ObjCBridgeCastKind getBridgeKind() const
clang::ObjCBridgeCastKind getBridgeKind() const
Description
Determine which kind of bridge is being performed via this cast.
Declared at: clang/include/clang/AST/ExprObjC.h:1652
¶llvm::StringRef getBridgeKindName() const
llvm::StringRef getBridgeKindName() const
Description
Retrieve the kind of bridge being performed as a string.
Declared at: clang/include/clang/AST/ExprObjC.h:1657
¶clang::SourceLocation getEndLoc() const
clang::SourceLocation getEndLoc() const
Declared at: clang/include/clang/AST/ExprObjC.h:1664
¶clang::SourceLocation getLParenLoc() const
clang::SourceLocation getLParenLoc() const
Declared at: clang/include/clang/AST/ExprObjC.h:1649