Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExpr.cpp1930 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
DExprClassification.cpp269 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in ClassifyInternal()
271 return ClassifyInternal(Ctx,cast<GenericSelectionExpr>(E)->getResultExpr()); in ClassifyInternal()
DStmtProfile.cpp511 void StmtProfiler::VisitGenericSelectionExpr(const GenericSelectionExpr *S) { in VisitGenericSelectionExpr()
DStmtPrinter.cpp933 void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) { in VisitGenericSelectionExpr()
DExprConstant.cpp3730 RetTy VisitGenericSelectionExpr(const GenericSelectionExpr *E) in VisitGenericSelectionExpr()
8153 return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx); in CheckICE()
/external/clang/include/clang/Basic/
DStmtNodes.td83 def GenericSelectionExpr : DStmt<Expr>;
/external/clang/lib/Sema/
DSemaExceptionSpec.cpp1031 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in canThrow()
1033 return canThrow(cast<GenericSelectionExpr>(E)->getResultExpr()); in canThrow()
DSemaPseudoObject.cpp78 if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in rebuild()
93 return new (S.Context) GenericSelectionExpr(S.Context, in rebuild()
DSemaExprObjC.cpp3301 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in stripARCUnbridgedCast()
3315 return new (Context) GenericSelectionExpr(Context, gse->getGenericLoc(), in stripARCUnbridgedCast()
DSemaInit.cpp142 else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) in updateStringLiteralType()
DSemaExpr.cpp1371 return Owned(new (Context) GenericSelectionExpr( in CreateGenericSelectionExpr()
1426 return Owned(new (Context) GenericSelectionExpr( in CreateGenericSelectionExpr()
DTreeTransform.h6412 TreeTransform<Derived>::TransformGenericSelectionExpr(GenericSelectionExpr *E) { in TransformGenericSelectionExpr()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp862 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()
DASTWriterStmt.cpp802 void ASTStmtWriter::VisitGenericSelectionExpr(GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
/external/clang/include/clang/AST/
DExpr.h4260 class GenericSelectionExpr : public Expr {
4268 GenericSelectionExpr(ASTContext &Context,
4277 GenericSelectionExpr(ASTContext &Context,
4284 explicit GenericSelectionExpr(EmptyShell Empty) in GenericSelectionExpr() function
DRecursiveASTVisitor.h2132 TraverseGenericSelectionExpr(GenericSelectionExpr *S) { in TraverseGenericSelectionExpr()
/external/clang/lib/CodeGen/
DCGExprComplex.cpp103 ComplexPairTy VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
DCGExpr.cpp796 return EmitLValue(cast<GenericSelectionExpr>(E)->getResultExpr()); in EmitLValue()
1627 if (const GenericSelectionExpr *Exp = dyn_cast<GenericSelectionExpr>(E)) { in setObjCGCLValueClass()
DCGExprAgg.cpp105 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
DCGExprConstant.cpp608 llvm::Constant *VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
DCGExprScalar.cpp177 Value *VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
/external/clang/tools/libclang/
DRecursiveASTVisitor.h2039 TraverseGenericSelectionExpr(GenericSelectionExpr *S) { in TraverseGenericSelectionExpr()