Lines Matching refs:stat
37 * isl::checked::stat and isl::checked::size values are checked for errors.
114 class stat {
119 friend stat manage(isl_stat val);
120 stat(isl_stat val) : val(val) {}
122 static stat ok() {
123 return stat(isl_stat_ok);
125 static stat error() {
126 return stat(isl_stat_error);
128 stat() : val(isl_stat_error) {}
145 inline stat manage(isl_stat val)
147 return stat(val);