Home | History | Annotate | Download | only in gtest

Lines Matching defs:type_

17108       : type_(a_type),
17116 Type type() const { return type_; }
17135 bool passed() const { return type_ == kSuccess; }
17138 bool failed() const { return type_ != kSuccess; }
17141 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
17144 bool fatally_failed() const { return type_ == kFatalFailure; }
17147 Type type_;