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

  /src/external/mit/isl/dist/include/isl/
cpp-checked-conversion.h 113 checked::ast_expr_op_call check(ast_expr_op_call obj) {
114 return checked::manage(obj.copy()).as<checked::ast_expr_op>().as<checked::ast_expr_op_call>();
117 ast_expr_op_call uncheck(checked::ast_expr_op_call obj) {
118 return manage(obj.copy()).as<ast_expr_op>().as<ast_expr_op_call>();
cpp-checked.h 234 class ast_expr_op_call;
798 // declarations for isl::ast_expr_op_call
800 class ast_expr_op_call : public ast_expr_op { class in namespace:isl::checked
803 friend ast_expr_op_call ast_expr_op::as<ast_expr_op_call>() const;
807 inline explicit ast_expr_op_call(__isl_take isl_ast_expr *ptr);
810 inline /* implicit */ ast_expr_op_call();
811 inline /* implicit */ ast_expr_op_call(const ast_expr_op_call &obj);
812 inline ast_expr_op_call &operator=(ast_expr_op_call obj)
6182 ast_expr_op_call::ast_expr_op_call(__isl_take isl_ast_expr *ptr) function in class:isl::checked::ast_expr_op_call
6185 ast_expr_op_call::ast_expr_op_call() function in class:isl::checked::ast_expr_op_call
6188 ast_expr_op_call::ast_expr_op_call(const ast_expr_op_call &obj) function in class:isl::checked::ast_expr_op_call
    [all...]
cpp.h 299 class ast_expr_op_call;
864 // declarations for isl::ast_expr_op_call
866 class ast_expr_op_call : public ast_expr_op { class in namespace:isl
869 friend ast_expr_op_call ast_expr_op::as<ast_expr_op_call>() const;
873 inline explicit ast_expr_op_call(__isl_take isl_ast_expr *ptr);
876 inline /* implicit */ ast_expr_op_call();
877 inline /* implicit */ ast_expr_op_call(const ast_expr_op_call &obj);
878 inline ast_expr_op_call &operator=(ast_expr_op_call obj)
7020 ast_expr_op_call::ast_expr_op_call(__isl_take isl_ast_expr *ptr) function in class:isl::ast_expr_op_call
7023 ast_expr_op_call::ast_expr_op_call() function in class:isl::ast_expr_op_call
7026 ast_expr_op_call::ast_expr_op_call(const ast_expr_op_call &obj) function in class:isl::ast_expr_op_call
    [all...]
  /src/external/mit/isl/dist/interface/
isl.py 5909 if len(args) == 1 and isinstance(args[0], ast_expr_op_call):
5977 return ast_expr_op_call(**keywords)
6219 class ast_expr_op_call(ast_expr_op): class in inherits:ast_expr_op
6230 return super(ast_expr_op_call, cls).__new__(cls)
6233 if not arg0.__class__ is ast_expr_op_call:
6234 arg0 = ast_expr_op_call(arg0)
6244 return 'isl.ast_expr_op_call("""%s""")' % s
6246 return 'isl.ast_expr_op_call("%s")' % s

Completed in 48 milliseconds