Lines Matching refs:engine

107 static engine::atf_result
111 throw engine::format_error(F("%s cannot have a reason") % status); in parse_without_reason()
113 return engine::atf_result(engine::atf_result::passed); in parse_without_reason()
128 static engine::atf_result
131 using engine::atf_result; in parse_with_reason()
134 throw engine::format_error(F("%s must be followed by ': <reason>'") % in parse_with_reason()
181 static engine::atf_result
184 using engine::atf_result; in parse_with_reason_and_arg()
188 throw engine::format_error(F("Invalid format for '%s' test case " in parse_with_reason_and_arg()
197 throw engine::format_error(F("Mismatched '(' in %s") % rest); in parse_with_reason_and_arg()
202 throw engine::format_error(F("Invalid integer argument '%s' to " in parse_with_reason_and_arg()
245 engine::atf_result::atf_result(const types type_) : in atf_result()
257 engine::atf_result::atf_result(const types type_, const std::string& reason_) : in atf_result()
268 engine::atf_result::atf_result(const types type_, in atf_result()
289 engine::atf_result
290 engine::atf_result::parse(std::istream& input) in parse()
336 engine::atf_result
337 engine::atf_result::load(const fs::path& file) in load()
350 engine::atf_result::types
351 engine::atf_result::type(void) const in type()
361 engine::atf_result::argument(void) const in argument()
371 engine::atf_result::reason(void) const in reason()
381 engine::atf_result::good(void) const in good()
418 engine::atf_result
419 engine::atf_result::apply(const optional< process::status >& status) in apply()
516 engine::atf_result::externalize(void) const in externalize()
551 engine::atf_result::operator==(const atf_result& other) const in operator ==()
564 engine::atf_result::operator!=(const atf_result& other) const in operator !=()
577 engine::operator<<(std::ostream& output, const atf_result& object) in operator <<()
619 engine::calculate_atf_result(const optional< process::status >& body_status, in calculate_atf_result()
622 using engine::atf_result; in calculate_atf_result()
627 } catch (const engine::format_error& error) { in calculate_atf_result()