Home
last modified time | relevance | path

Searched refs:GenericSelectionExpr (Results 1 – 22 of 22) sorted by relevance

/external/clang/include/clang/AST/
DEvaluatedExprVisitor.h62 void VisitGenericSelectionExpr(PTR(GenericSelectionExpr) E) { in VisitGenericSelectionExpr()
DExpr.h4510 class GenericSelectionExpr : public Expr {
4518 GenericSelectionExpr(const ASTContext &Context,
4527 GenericSelectionExpr(const ASTContext &Context,
4534 explicit GenericSelectionExpr(EmptyShell Empty) in GenericSelectionExpr() function
DRecursiveASTVisitor.h2055 DEF_TRAVERSE_STMT(GenericSelectionExpr, {
/external/clang/lib/AST/
DExpr.cpp2069 return cast<GenericSelectionExpr>(this)->getResultExpr()-> in isUnusedResultAWarning()
2461 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) { in IgnoreParens()
2872 return cast<GenericSelectionExpr>(this)->getResultExpr() in isConstantInitializer()
3098 return cast<GenericSelectionExpr>(this)->getResultExpr()-> in HasSideEffects()
3320 } else if (const GenericSelectionExpr *GE = in isNullPointerConstant()
3321 dyn_cast<GenericSelectionExpr>(this)) { in isNullPointerConstant()
3597 GenericSelectionExpr::GenericSelectionExpr(const ASTContext &Context, in GenericSelectionExpr() function in GenericSelectionExpr
3623 GenericSelectionExpr::GenericSelectionExpr(const ASTContext &Context, in GenericSelectionExpr() function in GenericSelectionExpr
DExprClassification.cpp275 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in ClassifyInternal()
277 return ClassifyInternal(Ctx,cast<GenericSelectionExpr>(E)->getResultExpr()); in ClassifyInternal()
DStmtProfile.cpp858 void StmtProfiler::VisitGenericSelectionExpr(const GenericSelectionExpr *S) { in VisitGenericSelectionExpr()
DStmtPrinter.cpp1356 void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) { in VisitGenericSelectionExpr()
DExprConstant.cpp4097 bool VisitGenericSelectionExpr(const GenericSelectionExpr *E) in VisitGenericSelectionExpr()
9129 return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx); in CheckICE()
/external/clang/include/clang/Basic/
DStmtNodes.td90 def GenericSelectionExpr : DStmt<Expr>;
/external/clang/lib/Sema/
DSemaExceptionSpec.cpp1119 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in canThrow()
1121 return canThrow(cast<GenericSelectionExpr>(E)->getResultExpr()); in canThrow()
DSemaPseudoObject.cpp138 if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in rebuild()
153 return new (S.Context) GenericSelectionExpr(S.Context, in rebuild()
DSemaExprObjC.cpp4120 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in stripARCUnbridgedCast()
4134 return new (Context) GenericSelectionExpr(Context, gse->getGenericLoc(), in stripARCUnbridgedCast()
DSemaInit.cpp142 else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) in updateStringLiteralType()
DSemaExpr.cpp1439 return new (Context) GenericSelectionExpr( in CreateGenericSelectionExpr()
1492 return new (Context) GenericSelectionExpr( in CreateGenericSelectionExpr()
DTreeTransform.h7967 TreeTransform<Derived>::TransformGenericSelectionExpr(GenericSelectionExpr *E) { in TransformGenericSelectionExpr()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp909 void ASTStmtReader::VisitGenericSelectionExpr(GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
914 new(Reader.getContext()) Stmt*[GenericSelectionExpr::END_EXPR+E->NumAssocs]; in VisitGenericSelectionExpr()
916 E->SubExprs[GenericSelectionExpr::CONTROLLING] = Reader.ReadSubExpr(); in VisitGenericSelectionExpr()
919 E->SubExprs[GenericSelectionExpr::END_EXPR+I] = Reader.ReadSubExpr(); in VisitGenericSelectionExpr()
2844 S = new (Context) GenericSelectionExpr(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp856 void ASTStmtWriter::VisitGenericSelectionExpr(GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
/external/clang/lib/CodeGen/
DCGExprComplex.cpp108 ComplexPairTy VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
DCGExprAgg.cpp111 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
DCGExprConstant.cpp626 llvm::Constant *VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
DCGExpr.cpp978 return EmitLValue(cast<GenericSelectionExpr>(E)->getResultExpr()); in EmitLValue()
1876 if (const auto *Exp = dyn_cast<GenericSelectionExpr>(E)) { in setObjCGCLValueClass()
DCGExprScalar.cpp220 Value *VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()