Lines Matching refs:Status
512 // their return value, the status of the phase last run can be checked
524 enum Status {
528 MUST_USE_RESULT Status CreateGraph();
529 MUST_USE_RESULT Status OptimizeGraph();
530 MUST_USE_RESULT Status GenerateAndInstallCode();
532 Status last_status() const { return last_status_; }
536 MUST_USE_RESULT Status AbortOptimization() {
557 Status last_status_;
560 MUST_USE_RESULT Status SetLastStatus(Status status) {
561 last_status_ = status;