/external/clang/include/clang/AST/ |
D | EvaluatedExprVisitor.h | 62 void VisitGenericSelectionExpr(PTR(GenericSelectionExpr) E) { in VisitGenericSelectionExpr()
|
D | Expr.h | 4510 class GenericSelectionExpr : public Expr { 4518 GenericSelectionExpr(const ASTContext &Context, 4527 GenericSelectionExpr(const ASTContext &Context, 4534 explicit GenericSelectionExpr(EmptyShell Empty) in GenericSelectionExpr() function
|
D | RecursiveASTVisitor.h | 2055 DEF_TRAVERSE_STMT(GenericSelectionExpr, {
|
/external/clang/lib/AST/ |
D | Expr.cpp | 2069 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
|
D | ExprClassification.cpp | 275 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in ClassifyInternal() 277 return ClassifyInternal(Ctx,cast<GenericSelectionExpr>(E)->getResultExpr()); in ClassifyInternal()
|
D | StmtProfile.cpp | 858 void StmtProfiler::VisitGenericSelectionExpr(const GenericSelectionExpr *S) { in VisitGenericSelectionExpr()
|
D | StmtPrinter.cpp | 1356 void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) { in VisitGenericSelectionExpr()
|
D | ExprConstant.cpp | 4097 bool VisitGenericSelectionExpr(const GenericSelectionExpr *E) in VisitGenericSelectionExpr() 9129 return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx); in CheckICE()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 90 def GenericSelectionExpr : DStmt<Expr>;
|
/external/clang/lib/Sema/ |
D | SemaExceptionSpec.cpp | 1119 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in canThrow() 1121 return canThrow(cast<GenericSelectionExpr>(E)->getResultExpr()); in canThrow()
|
D | SemaPseudoObject.cpp | 138 if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in rebuild() 153 return new (S.Context) GenericSelectionExpr(S.Context, in rebuild()
|
D | SemaExprObjC.cpp | 4120 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in stripARCUnbridgedCast() 4134 return new (Context) GenericSelectionExpr(Context, gse->getGenericLoc(), in stripARCUnbridgedCast()
|
D | SemaInit.cpp | 142 else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) in updateStringLiteralType()
|
D | SemaExpr.cpp | 1439 return new (Context) GenericSelectionExpr( in CreateGenericSelectionExpr() 1492 return new (Context) GenericSelectionExpr( in CreateGenericSelectionExpr()
|
D | TreeTransform.h | 7967 TreeTransform<Derived>::TransformGenericSelectionExpr(GenericSelectionExpr *E) { in TransformGenericSelectionExpr()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 909 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()
|
D | ASTWriterStmt.cpp | 856 void ASTStmtWriter::VisitGenericSelectionExpr(GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
|
/external/clang/lib/CodeGen/ |
D | CGExprComplex.cpp | 108 ComplexPairTy VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
|
D | CGExprAgg.cpp | 111 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
|
D | CGExprConstant.cpp | 626 llvm::Constant *VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
|
D | CGExpr.cpp | 978 return EmitLValue(cast<GenericSelectionExpr>(E)->getResultExpr()); in EmitLValue() 1876 if (const auto *Exp = dyn_cast<GenericSelectionExpr>(E)) { in setObjCGCLValueClass()
|
D | CGExprScalar.cpp | 220 Value *VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
|