Home | History | Annotate | Download | only in gtest

Lines Matching defs:type_

17107       : type_(a_type),
17115 Type type() const { return type_; }
17134 bool passed() const { return type_ == kSuccess; }
17137 bool failed() const { return type_ != kSuccess; }
17140 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
17143 bool fatally_failed() const { return type_ == kFatalFailure; }
17146 Type type_;