HomeSort by: relevance | last modified time | path
    Searched refs:ast_expr_op_or (Results 1 - 4 of 4) sorted by relevancy

  /src/external/mit/isl/dist/include/isl/
cpp-checked-conversion.h 225 checked::ast_expr_op_or check(ast_expr_op_or obj) {
226 return checked::manage(obj.copy()).as<checked::ast_expr_op>().as<checked::ast_expr_op_or>();
229 ast_expr_op_or uncheck(checked::ast_expr_op_or obj) {
230 return manage(obj.copy()).as<ast_expr_op>().as<ast_expr_op_or>();
cpp-checked.h 248 class ast_expr_op_or;
1064 // declarations for isl::ast_expr_op_or
1066 class ast_expr_op_or : public ast_expr_op { class in namespace:isl::checked
1069 friend ast_expr_op_or ast_expr_op::as<ast_expr_op_or>() const;
1073 inline explicit ast_expr_op_or(__isl_take isl_ast_expr *ptr);
1076 inline /* implicit */ ast_expr_op_or();
1077 inline /* implicit */ ast_expr_op_or(const ast_expr_op_or &obj);
1078 inline ast_expr_op_or &operator=(ast_expr_op_or obj)
6644 ast_expr_op_or::ast_expr_op_or(__isl_take isl_ast_expr *ptr) function in class:isl::checked::ast_expr_op_or
6647 ast_expr_op_or::ast_expr_op_or() function in class:isl::checked::ast_expr_op_or
6650 ast_expr_op_or::ast_expr_op_or(const ast_expr_op_or &obj) function in class:isl::checked::ast_expr_op_or
    [all...]
cpp.h 313 class ast_expr_op_or;
1130 // declarations for isl::ast_expr_op_or
1132 class ast_expr_op_or : public ast_expr_op { class in namespace:isl
1135 friend ast_expr_op_or ast_expr_op::as<ast_expr_op_or>() const;
1139 inline explicit ast_expr_op_or(__isl_take isl_ast_expr *ptr);
1142 inline /* implicit */ ast_expr_op_or();
1143 inline /* implicit */ ast_expr_op_or(const ast_expr_op_or &obj);
1144 inline ast_expr_op_or &operator=(ast_expr_op_or obj)
7510 ast_expr_op_or::ast_expr_op_or(__isl_take isl_ast_expr *ptr) function in class:isl::ast_expr_op_or
7513 ast_expr_op_or::ast_expr_op_or() function in class:isl::ast_expr_op_or
7516 ast_expr_op_or::ast_expr_op_or(const ast_expr_op_or &obj) function in class:isl::ast_expr_op_or
    [all...]
  /src/external/mit/isl/dist/interface/
isl.py 5829 if len(args) == 1 and isinstance(args[0], ast_expr_op_or):
5937 return ast_expr_op_or(**keywords)
6723 class ast_expr_op_or(ast_expr_op): class in inherits:ast_expr_op
6734 return super(ast_expr_op_or, cls).__new__(cls)
6737 if not arg0.__class__ is ast_expr_op_or:
6738 arg0 = ast_expr_op_or(arg0)
6748 return 'isl.ast_expr_op_or("""%s""")' % s
6750 return 'isl.ast_expr_op_or("%s")' % s

Completed in 136 milliseconds