Home
last modified time | relevance | path

Searched refs:schedule_node_domain (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/mit/isl/dist/include/isl/
H A Dcpp-checked-conversion.h529 checked::schedule_node_domain check(schedule_node_domain obj) { in check()
530 return checked::manage(obj.copy()).as<checked::schedule_node_domain>(); in check()
533 schedule_node_domain uncheck(checked::schedule_node_domain obj) { in uncheck()
534 return manage(obj.copy()).as<schedule_node_domain>(); in uncheck()
H A Dcpp-checked.h286 class schedule_node_domain; variable
3402 class schedule_node_domain : public schedule_node {
3405 friend schedule_node_domain schedule_node::as<schedule_node_domain>() const;
3409 inline explicit schedule_node_domain(__isl_take isl_schedule_node *ptr);
3412 inline /* implicit */ schedule_node_domain();
3413 inline /* implicit */ schedule_node_domain(const schedule_node_domain &obj);
3414 inline schedule_node_domain &operator=(schedule_node_domain obj);
16515 schedule_node_domain::schedule_node_domain(__isl_take isl_schedule_node *ptr) in schedule_node_domain() function
16518 schedule_node_domain::schedule_node_domain() in schedule_node_domain() function
16521 schedule_node_domain::schedule_node_domain(const schedule_node_domain &obj) in schedule_node_domain() function
[all …]
H A Dcpp.h351 class schedule_node_domain; variable
3468 class schedule_node_domain : public schedule_node {
3471 friend schedule_node_domain schedule_node::as<schedule_node_domain>() const;
3475 inline explicit schedule_node_domain(__isl_take isl_schedule_node *ptr);
3478 inline /* implicit */ schedule_node_domain();
3479 inline /* implicit */ schedule_node_domain(const schedule_node_domain &obj);
3480 inline schedule_node_domain &operator=(schedule_node_domain obj);
22998 schedule_node_domain::schedule_node_domain(__isl_take isl_schedule_node *ptr) in schedule_node_domain() function
23001 schedule_node_domain::schedule_node_domain() in schedule_node_domain() function
23004 schedule_node_domain::schedule_node_domain(const schedule_node_domain &obj) in schedule_node_domain() function
[all …]
/netbsd-src/external/mit/isl/dist/
H A Disl_test_cpp-checked.cc214 return !node.isa<isl::schedule_node_domain>(); in test_schedule_tree()
224 auto domain = root.as<isl::schedule_node_domain>().domain(); in test_schedule_tree()
H A Disl_test_cpp.cc244 return !node.isa<isl::schedule_node_domain>(); in test_schedule_tree()
262 auto domain = root.as<isl::schedule_node_domain>().domain(); in test_schedule_tree()
H A Disl_test_python.py333 assert(type(root) == isl.schedule_node_domain)
367 return type(node) != isl.schedule_node_domain
H A Disl_test_cpp-generic.cc283 assert(IS_TRUE(root.isa<isl::schedule_node_domain>())); in test_schedule_tree_generic()
284 root = root.as<isl::schedule_node_domain>().child(0).parent(); in test_schedule_tree_generic()
/netbsd-src/external/mit/isl/dist/interface/
H A Disl.py15140 if len(args) == 1 and isinstance(args[0], schedule_node_domain):
15188 return schedule_node_domain(**keywords)
16184 class schedule_node_domain(schedule_node): class
16195 return super(schedule_node_domain, cls).__new__(cls)
16198 if not arg0.__class__ is schedule_node_domain:
16199 arg0 = schedule_node_domain(arg0)