Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DEvaluatedExprVisitor.h63 void VisitGenericSelectionExpr(PTR(GenericSelectionExpr) E) { in VisitGenericSelectionExpr()
H A DStmtDataCollectors.td190 class GenericSelectionExpr {
H A DExpr.h5015 class GenericSelectionExpr : public Expr {
5023 GenericSelectionExpr(const ASTContext &Context,
5032 GenericSelectionExpr(const ASTContext &Context,
5039 explicit GenericSelectionExpr(EmptyShell Empty) in GenericSelectionExpr() function
H A DRecursiveASTVisitor.h2302 DEF_TRAVERSE_STMT(GenericSelectionExpr, {
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp39 GenericSelectionExpr>
42 AST_MATCHER_P(GenericSelectionExpr, hasControllingExpr, in AST_MATCHER_P() argument
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExpr.cpp2176 return cast<GenericSelectionExpr>(this)->getResultExpr()-> in isUnusedResultAWarning()
2573 if (GenericSelectionExpr* P = dyn_cast<GenericSelectionExpr>(E)) { in IgnoreParens()
3005 return cast<GenericSelectionExpr>(this)->getResultExpr() in isConstantInitializer()
3259 return cast<GenericSelectionExpr>(this)->getResultExpr()-> in HasSideEffects()
3486 } else if (const GenericSelectionExpr *GE = in isNullPointerConstant()
3487 dyn_cast<GenericSelectionExpr>(this)) { in isNullPointerConstant()
3778 GenericSelectionExpr::GenericSelectionExpr(const ASTContext &Context, in GenericSelectionExpr() function in GenericSelectionExpr
3804 GenericSelectionExpr::GenericSelectionExpr(const ASTContext &Context, in GenericSelectionExpr() function in GenericSelectionExpr
H A DExprClassification.cpp291 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in ClassifyInternal()
293 return ClassifyInternal(Ctx,cast<GenericSelectionExpr>(E)->getResultExpr()); in ClassifyInternal()
H A DASTDumper.cpp303 void VisitGenericSelectionExpr(const GenericSelectionExpr *E);
1410 if (isa<DeclStmt>(S) || isa<GenericSelectionExpr>(S)) { in dumpStmt()
1479 void ASTDumper::VisitGenericSelectionExpr(const GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
H A DStmtProfile.cpp1261 void StmtProfiler::VisitGenericSelectionExpr(const GenericSelectionExpr *S) { in VisitGenericSelectionExpr()
H A DStmtPrinter.cpp1262 void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) { in VisitGenericSelectionExpr()
H A DExprConstant.cpp4768 bool VisitGenericSelectionExpr(const GenericSelectionExpr *E) in VisitGenericSelectionExpr()
11260 return CheckICE(cast<GenericSelectionExpr>(E)->getResultExpr(), Ctx); in CheckICE()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1231 if (cast<GenericSelectionExpr>(E)->isResultDependent()) in canThrow()
1233 return canThrow(cast<GenericSelectionExpr>(E)->getResultExpr()); in canThrow()
H A DSemaPseudoObject.cpp139 if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in rebuild()
154 return new (S.Context) GenericSelectionExpr(S.Context, in rebuild()
H A DSemaExprObjC.cpp4332 } else if (GenericSelectionExpr *gse = dyn_cast<GenericSelectionExpr>(e)) { in stripARCUnbridgedCast()
4346 return new (Context) GenericSelectionExpr(Context, gse->getGenericLoc(), in stripARCUnbridgedCast()
H A DSemaInit.cpp154 else if (GenericSelectionExpr *GSE = dyn_cast<GenericSelectionExpr>(E)) in updateStringLiteralType()
H A DSemaOverload.cpp13690 if (auto *GSE = dyn_cast<GenericSelectionExpr>(E)) { in FixOverloadedFunctionReference()
13704 return new (Context) GenericSelectionExpr( in FixOverloadedFunctionReference()
H A DSemaExpr.cpp1436 return new (Context) GenericSelectionExpr( in CreateGenericSelectionExpr()
1489 return new (Context) GenericSelectionExpr( in CreateGenericSelectionExpr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td93 def GenericSelectionExpr : DStmt<Expr>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1024 void ASTStmtReader::VisitGenericSelectionExpr(GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
1029 new(Record.getContext()) Stmt*[GenericSelectionExpr::END_EXPR+E->NumAssocs]; in VisitGenericSelectionExpr()
1031 E->SubExprs[GenericSelectionExpr::CONTROLLING] = Record.readSubExpr(); in VisitGenericSelectionExpr()
1034 E->SubExprs[GenericSelectionExpr::END_EXPR+I] = Record.readSubExpr(); in VisitGenericSelectionExpr()
2679 S = new (Context) GenericSelectionExpr(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp970 void ASTStmtWriter::VisitGenericSelectionExpr(GenericSelectionExpr *E) { in VisitGenericSelectionExpr()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprComplex.cpp108 ComplexPairTy VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
H A DCGExprAgg.cpp113 void VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()
H A DCGExprConstant.cpp740 llvm::Constant *VisitGenericSelectionExpr(GenericSelectionExpr *GE, in VisitGenericSelectionExpr()
H A DCGExpr.cpp1272 return EmitLValue(cast<GenericSelectionExpr>(E)->getResultExpr()); in EmitLValue()
2229 if (const auto *Exp = dyn_cast<GenericSelectionExpr>(E)) { in setObjCGCLValueClass()
H A DCGExprScalar.cpp421 Value *VisitGenericSelectionExpr(GenericSelectionExpr *GE) { in VisitGenericSelectionExpr()

12