Home
last modified time | relevance | path

Searched refs:ast_expr_op_add (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/mit/isl/dist/include/isl/
H A Dcpp-checked-conversion.h81 checked::ast_expr_op_add check(ast_expr_op_add obj) { in check()
82 return checked::manage(obj.copy()).as<checked::ast_expr_op>().as<checked::ast_expr_op_add>(); in check()
85 ast_expr_op_add uncheck(checked::ast_expr_op_add obj) { in uncheck()
86 return manage(obj.copy()).as<ast_expr_op>().as<ast_expr_op_add>(); in uncheck()
H A Dcpp-checked.h230 class ast_expr_op_add; variable
724 class ast_expr_op_add : public ast_expr_op {
727 friend ast_expr_op_add ast_expr_op::as<ast_expr_op_add>() const;
731 inline explicit ast_expr_op_add(__isl_take isl_ast_expr *ptr);
734 inline /* implicit */ ast_expr_op_add();
735 inline /* implicit */ ast_expr_op_add(const ast_expr_op_add &obj);
736 inline ast_expr_op_add &operator=(ast_expr_op_add obj);
6050 ast_expr_op_add::ast_expr_op_add(__isl_take isl_ast_expr *ptr) in ast_expr_op_add() function
6053 ast_expr_op_add::ast_expr_op_add() in ast_expr_op_add() function
6056 ast_expr_op_add::ast_expr_op_add(const ast_expr_op_add &obj) in ast_expr_op_add() function
[all …]
H A Dcpp.h295 class ast_expr_op_add; variable
790 class ast_expr_op_add : public ast_expr_op {
793 friend ast_expr_op_add ast_expr_op::as<ast_expr_op_add>() const;
797 inline explicit ast_expr_op_add(__isl_take isl_ast_expr *ptr);
800 inline /* implicit */ ast_expr_op_add();
801 inline /* implicit */ ast_expr_op_add(const ast_expr_op_add &obj);
802 inline ast_expr_op_add &operator=(ast_expr_op_add obj);
6880 ast_expr_op_add::ast_expr_op_add(__isl_take isl_ast_expr *ptr) in ast_expr_op_add() function
6883 ast_expr_op_add::ast_expr_op_add() in ast_expr_op_add() function
6886 ast_expr_op_add::ast_expr_op_add(const ast_expr_op_add &obj) in ast_expr_op_add() function
[all …]
/netbsd-src/external/mit/isl/dist/
H A Disl_test_python.py476 assert(type(op) == isl.ast_expr_op_add)
H A Disl_test_cpp-generic.cc372 assert(IS_TRUE(op.isa<isl::ast_expr_op_add>())); in test_ast_build_expr()
/netbsd-src/external/mit/isl/dist/interface/
H A Disl.py5849 if len(args) == 1 and isinstance(args[0], ast_expr_op_add):
5947 return ast_expr_op_add(**keywords)
6075 class ast_expr_op_add(ast_expr_op): class
6086 return super(ast_expr_op_add, cls).__new__(cls)
6089 if not arg0.__class__ is ast_expr_op_add:
6090 arg0 = ast_expr_op_add(arg0)