/external/clang/lib/AST/ |
D | Expr.cpp | 1930 return cast<GenericSelectionExpr>(this)->getResultExpr()-> in isUnusedResultAWarning() 2304 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) { in IgnoreParens() 2684 return cast<GenericSelectionExpr>(this)->getResultExpr() in isConstantInitializer() 2844 return cast<GenericSelectionExpr>(this)->getResultExpr()-> in HasSideEffects() 3041 } else if (const GenericSelectionExpr *GE = in isNullPointerConstant() 3042 dyn_cast<GenericSelectionExpr>(this)) { in isNullPointerConstant() 3566 GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context, in GenericSelectionExpr() function in GenericSelectionExpr 3592 GenericSelectionExpr::GenericSelectionExpr(ASTContext &Context, in GenericSelectionExpr() function in GenericSelectionExpr
|
D | ExprClassification.cpp | 269 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in ClassifyInternal() 271 return ClassifyInternal(Ctx,cast<GenericSelectionExpr>(E)->getResultExpr()); in ClassifyInternal()
|
D | StmtProfile.cpp | 511 void StmtProfiler::VisitGenericSelectionExpr(const GenericSelectionExpr *S) { in VisitGenericSelectionExpr()
|
D | StmtPrinter.cpp | 933 void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) { in VisitGenericSelectionExpr()
|
D | ExprConstant.cpp | 3730 RetTy VisitGenericSelectionExpr(const GenericSelectionExpr *E) in VisitGenericSelectionExpr() 8153 return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx); in CheckICE()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 83 def GenericSelectionExpr : DStmt<Expr>;
|
/external/clang/lib/Sema/ |
D | SemaExceptionSpec.cpp | 1031 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in canThrow() 1033 return canThrow(cast<GenericSelectionExpr>(E)->getResultExpr()); in canThrow()
|
D | SemaPseudoObject.cpp | 78 if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in rebuild() 93 return new (S.Context) GenericSelectionExpr(S.Context, in rebuild()
|
D | SemaExprObjC.cpp | 3301 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in stripARCUnbridgedCast() 3315 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 | 1371 return Owned(new (Context) GenericSelectionExpr( in CreateGenericSelectionExpr() 1426 return Owned(new (Context) GenericSelectionExpr( in CreateGenericSelectionExpr()
|
D | TreeTransform.h | 6412 TreeTransform<Derived>::TransformGenericSelectionExpr(GenericSelectionExpr *E) { in TransformGenericSelectionExpr()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 862 void ASTStmtReader::VisitGenericSelectionExpr(GenericSelectionExpr *E) { in VisitGenericSelectionExpr() 867 new(Reader.getContext()) Stmt*[GenericSelectionExpr::END_EXPR+E->NumAssocs]; in VisitGenericSelectionExpr() 869 E->SubExprs[GenericSelectionExpr::CONTROLLING] = Reader.ReadSubExpr(); in VisitGenericSelectionExpr() 872 E->SubExprs[GenericSelectionExpr::END_EXPR+I] = Reader.ReadSubExpr(); in VisitGenericSelectionExpr() 2098 S = new (Context) GenericSelectionExpr(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 802 void ASTStmtWriter::VisitGenericSelectionExpr(GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
|
/external/clang/include/clang/AST/ |
D | Expr.h | 4260 class GenericSelectionExpr : public Expr { 4268 GenericSelectionExpr(ASTContext &Context, 4277 GenericSelectionExpr(ASTContext &Context, 4284 explicit GenericSelectionExpr(EmptyShell Empty) in GenericSelectionExpr() function
|
D | RecursiveASTVisitor.h | 2132 TraverseGenericSelectionExpr(GenericSelectionExpr *S) { in TraverseGenericSelectionExpr()
|
/external/clang/lib/CodeGen/ |
D | CGExprComplex.cpp | 103 ComplexPairTy VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
|
D | CGExpr.cpp | 796 return EmitLValue(cast<GenericSelectionExpr>(E)->getResultExpr()); in EmitLValue() 1627 if (const GenericSelectionExpr *Exp = dyn_cast<GenericSelectionExpr>(E)) { in setObjCGCLValueClass()
|
D | CGExprAgg.cpp | 105 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
|
D | CGExprConstant.cpp | 608 llvm::Constant *VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
|
D | CGExprScalar.cpp | 177 Value *VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
|
/external/clang/tools/libclang/ |
D | RecursiveASTVisitor.h | 2039 TraverseGenericSelectionExpr(GenericSelectionExpr *S) { in TraverseGenericSelectionExpr()
|