Lines Matching refs:LogicalResult

56 mlir::LogicalResult CIRGenFunction::emitStmt(const Stmt *s,  in emitStmt()
239 mlir::LogicalResult CIRGenFunction::emitSimpleStmt(const Stmt *s, in emitSimpleStmt()
301 mlir::LogicalResult CIRGenFunction::emitIfStmt(const IfStmt &s) { in emitIfStmt()
302 mlir::LogicalResult res = mlir::success(); in emitIfStmt()
316 auto ifStmtBuilder = [&]() -> mlir::LogicalResult { in emitIfStmt()
363 mlir::LogicalResult CIRGenFunction::emitDeclStmt(const DeclStmt &s) { in emitDeclStmt()
372 mlir::LogicalResult CIRGenFunction::emitReturnStmt(const ReturnStmt &s) { in emitReturnStmt()
418 mlir::LogicalResult
428 mlir::LogicalResult CIRGenFunction::emitBreakStmt(const clang::BreakStmt &s) { in emitBreakStmt()
438 mlir::LogicalResult
446 mlir::LogicalResult result = mlir::success(); in emitCaseDefaultCascade()
521 mlir::LogicalResult CIRGenFunction::emitCaseStmt(const CaseStmt &s, in emitCaseStmt()
545 mlir::LogicalResult CIRGenFunction::emitDefaultStmt(const clang::DefaultStmt &s, in emitDefaultStmt()
552 mlir::LogicalResult CIRGenFunction::emitSwitchCase(const SwitchCase &s, in emitSwitchCase()
568 mlir::LogicalResult
574 auto forStmtBuilder = [&]() -> mlir::LogicalResult { in emitCXXForRangeStmt()
575 mlir::LogicalResult loopRes = mlir::success(); in emitCXXForRangeStmt()
625 mlir::LogicalResult res = mlir::success(); in emitCXXForRangeStmt()
645 mlir::LogicalResult CIRGenFunction::emitForStmt(const ForStmt &s) { in emitForStmt()
649 auto forStmtBuilder = [&]() -> mlir::LogicalResult { in emitForStmt()
650 mlir::LogicalResult loopRes = mlir::success(); in emitForStmt()
717 mlir::LogicalResult CIRGenFunction::emitDoStmt(const DoStmt &s) { in emitDoStmt()
721 auto doStmtBuilder = [&]() -> mlir::LogicalResult { in emitDoStmt()
722 mlir::LogicalResult loopRes = mlir::success(); in emitDoStmt()
752 mlir::LogicalResult res = mlir::success(); in emitDoStmt()
768 mlir::LogicalResult CIRGenFunction::emitWhileStmt(const WhileStmt &s) { in emitWhileStmt()
772 auto whileStmtBuilder = [&]() -> mlir::LogicalResult { in emitWhileStmt()
773 mlir::LogicalResult loopRes = mlir::success(); in emitWhileStmt()
808 mlir::LogicalResult res = mlir::success(); in emitWhileStmt()
824 mlir::LogicalResult CIRGenFunction::emitSwitchBody(const Stmt *s) { in emitSwitchBody()
861 mlir::LogicalResult CIRGenFunction::emitSwitchStmt(const clang::SwitchStmt &s) { in emitSwitchStmt()
869 auto switchStmtBuilder = [&]() -> mlir::LogicalResult { in emitSwitchStmt()
885 mlir::LogicalResult res = mlir::success(); in emitSwitchStmt()
904 mlir::LogicalResult res = mlir::success(); in emitSwitchStmt()