Searched refs:Stmt (Results 276 - 300 of 320) sorted by relevance

<<111213

/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp82 void EmitBody(CodeGenFunction &CGF, const Stmt *S) override;
384 void EmitBody(CodeGenFunction &CGF, const Stmt *S) override {
1031 void CGOpenMPRegionInfo::EmitBody(CodeGenFunction &CGF, const Stmt * /*S*/) {
6418 const Stmt *CGOpenMPRuntime::getSingleCompoundChild(ASTContext &Ctx,
6419 const Stmt *Body) {
6420 const Stmt *Child = Body->IgnoreContainers();
6423 for (const Stmt *S : C->body()) {
6486 const Stmt *ChildStmt =
6598 const Stmt *Child = CGOpenMPRuntime::getSingleCompoundChild(
6713 const Stmt *Chil
[all...]
H A DCGOpenMPRuntimeNVPTX.cpp573 for (const Stmt *Child : E->children())
578 void VisitStmt(const Stmt *S) {
581 for (const Stmt *Child : S->children())
731 const Stmt *ChildStmt = CGOpenMPRuntime::getSingleCompoundChild(Ctx, Body);
929 const Stmt *ChildStmt = CGOpenMPRuntime::getSingleCompoundChild(Ctx, Body);
2030 if (const Stmt *S = CGOpenMPRuntime::getSingleCompoundChild(
4724 const Stmt *Body = nullptr;
H A DCGExprConstant.cpp1009 llvm::Constant *VisitStmt(Stmt *S, QualType T) {
1773 ConstantLValue VisitStmt(const Stmt *S) { return nullptr; }
H A DCGExprComplex.cpp100 ComplexPairTy VisitStmt(Stmt *S) {
102 llvm_unreachable("Stmt can't have complex result type!");
H A DCodeGenModule.cpp795 void CodeGenModule::ErrorUnsupported(const Stmt *S, const char *Type) {
2706 bool VisitStmt(const Stmt *S) {
2707 for (const Stmt *Child : S->children())
2795 const Stmt *Body = FD->getBody();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp151 for (Stmt *Child : E->children()) {
H A DSemaTemplateVariadic.cpp133 bool TraverseStmt(Stmt *S) {
H A DSemaLambda.cpp1540 ExprResult Sema::ActOnLambdaExpr(SourceLocation StartLoc, Stmt *Body,
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp891 const Stmt *Element = FCS->getElement();
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp684 const Stmt *S,
H A DHTMLDiagnostics.cpp16 #include "clang/AST/Stmt.h"
227 if (const Stmt *Body = DeclWithIssue->getBody()) {
H A DPlistDiagnostics.cpp741 if (const Stmt *Body = DeclWithIssue->getBody()) {
H A DMemRegion.cpp932 const Stmt *CallSite = SFC->getCallSite();
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DComputeDependence.cpp103 if (E->getStmtClass() == Stmt::ImplicitCastExprClass) {
H A DExprClassification.cpp107 case Stmt::NoStmtClass:
H A DDeclObjC.cpp19 #include "clang/AST/Stmt.h"
856 Stmt *ObjCMethodDecl::getBody() const {
993 if (Stmt *Body = getBody())
H A DDeclBase.cpp28 #include "clang/AST/Stmt.h"
957 if (Stmt *Body = getBody())
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp583 ASTNodeKind::getFromNodeKind<Stmt>(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp692 if (!DFG->IsCode<NodeAttrs::Stmt>(IA))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp480 BA.Addr->members_if(DataFlowGraph::IsCode<NodeAttrs::Stmt>, DFG)) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp702 Stmt *DeepestParsedCaseStmt = nullptr;
777 Stmt *NextDeepest = Case.get();
H A DParseExprCXX.cpp1495 StmtResult Stmt(ParseCompoundStatementBody());
1499 if (!Stmt.isInvalid() && !TrailingReturnType.isInvalid())
1500 return Actions.ActOnLambdaExpr(LambdaBeginLoc, Stmt.get(), getCurScope());
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp351 for (Stmt *SubStmt : E->children())
369 bool TraverseStmt(Stmt *S) {
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1117 StringRef Stmt = FrameFunc.substr(0, EqOrEnd); local
1118 W.printString(Stmt);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DType.h123 class Stmt;
3043 Stmt *SizeExpr;
3052 SizeExpr((Stmt*) e), Brackets(brackets) {}
3059 // to have a dependency of Type.h on Stmt.h/Expr.h.
3102 Stmt *SizeExpr;
3116 // to have a dependency of Type.h on Stmt.h/Expr.h.

Completed in 427 milliseconds

<<111213