| /src/external/gpl3/gcc/dist/gcc/ |
| opt-problem.h | 49 return opt_result::failure_at (stmt, "foo is unsupported"); 53 return opt_result::success (); 57 opt_result::success and opt_result::failure return opt_result values 59 If dump_enabled_p, then opt_result::failure also creates an opt_problem *, 64 The opt_problem can be propagated via opt_result values back up 77 we can replace the bool with an opt_result, so if dump_enabled_p, we 81 opt_result ok = try_something_that_might_fail (); 87 return ok; // propagating the opt_result 178 class opt_result : public opt_wrapper <bool> class in inherits:opt_wrapper 216 opt_result (wrapped_t result, opt_problem *problem) function in class:opt_result [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| opt-problem.h | 49 return opt_result::failure_at (stmt, "foo is unsupported"); 53 return opt_result::success (); 57 opt_result::success and opt_result::failure return opt_result values 59 If dump_enabled_p, then opt_result::failure also creates an opt_problem *, 64 The opt_problem can be propagated via opt_result values back up 77 we can replace the bool with an opt_result, so if dump_enabled_p, we 81 opt_result ok = try_something_that_might_fail (); 87 return ok; // propagating the opt_result 178 class opt_result : public opt_wrapper <bool> class in inherits:opt_wrapper 216 opt_result (wrapped_t result, opt_problem *problem) function in class:opt_result [all...] |