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

  /src/external/mit/isl/dist/include/isl/
cpp-checked-conversion.h 97 checked::ast_expr_op_and check(ast_expr_op_and obj) {
98 return checked::manage(obj.copy()).as<checked::ast_expr_op>().as<checked::ast_expr_op_and>();
101 ast_expr_op_and uncheck(checked::ast_expr_op_and obj) {
102 return manage(obj.copy()).as<ast_expr_op>().as<ast_expr_op_and>();
cpp-checked.h 232 class ast_expr_op_and;
760 // declarations for isl::ast_expr_op_and
762 class ast_expr_op_and : public ast_expr_op { class in namespace:isl::checked
765 friend ast_expr_op_and ast_expr_op::as<ast_expr_op_and>() const;
769 inline explicit ast_expr_op_and(__isl_take isl_ast_expr *ptr);
772 inline /* implicit */ ast_expr_op_and();
773 inline /* implicit */ ast_expr_op_and(const ast_expr_op_and &obj);
774 inline ast_expr_op_and &operator=(ast_expr_op_and obj)
6116 ast_expr_op_and::ast_expr_op_and(__isl_take isl_ast_expr *ptr) function in class:isl::checked::ast_expr_op_and
6119 ast_expr_op_and::ast_expr_op_and() function in class:isl::checked::ast_expr_op_and
6122 ast_expr_op_and::ast_expr_op_and(const ast_expr_op_and &obj) function in class:isl::checked::ast_expr_op_and
    [all...]
cpp.h 297 class ast_expr_op_and;
826 // declarations for isl::ast_expr_op_and
828 class ast_expr_op_and : public ast_expr_op { class in namespace:isl
831 friend ast_expr_op_and ast_expr_op::as<ast_expr_op_and>() const;
835 inline explicit ast_expr_op_and(__isl_take isl_ast_expr *ptr);
838 inline /* implicit */ ast_expr_op_and();
839 inline /* implicit */ ast_expr_op_and(const ast_expr_op_and &obj);
840 inline ast_expr_op_and &operator=(ast_expr_op_and obj)
6950 ast_expr_op_and::ast_expr_op_and(__isl_take isl_ast_expr *ptr) function in class:isl::ast_expr_op_and
6953 ast_expr_op_and::ast_expr_op_and() function in class:isl::ast_expr_op_and
6956 ast_expr_op_and::ast_expr_op_and(const ast_expr_op_and &obj) function in class:isl::ast_expr_op_and
    [all...]
  /src/external/mit/isl/dist/interface/
isl.py 5821 if len(args) == 1 and isinstance(args[0], ast_expr_op_and):
5933 return ast_expr_op_and(**keywords)
6147 class ast_expr_op_and(ast_expr_op): class in inherits:ast_expr_op
6158 return super(ast_expr_op_and, cls).__new__(cls)
6161 if not arg0.__class__ is ast_expr_op_and:
6162 arg0 = ast_expr_op_and(arg0)
6172 return 'isl.ast_expr_op_and("""%s""")' % s
6174 return 'isl.ast_expr_op_and("%s")' % s

Completed in 50 milliseconds