Searched refs:bools_ (Results 1 – 2 of 2) sorted by relevance
113 bools_.find("gtest_print_time")->second = false; in SetPrintTime()143 bools_.find(arg)->second = true; in SetBool()326 bools_.clear(); in Process()327 bools_["gtest_print_time"] = ::testing::GTEST_FLAG(print_time); in Process()328 bools_["gtest_also_run_disabled_tests"] = ::testing::GTEST_FLAG(also_run_disabled_tests); in Process()329 bools_["gtest_list_tests"] = false; in Process()330 bools_["gtest_break_on_failure"] = false; in Process()331 bools_["gtest_throw_on_failure"] = false; in Process()334 bools_["gtest_format"] = true; in Process()380 if (bools_["gtest_break_on_failure"] || bools_["gtest_throw_on_failure"]) { in Process()
47 bool print_time() const { return bools_.at("gtest_print_time"); } in print_time()48 bool allow_disabled_tests() const { return bools_.at("gtest_also_run_disabled_tests"); } in allow_disabled_tests()49 bool list_tests() const { return bools_.at("gtest_list_tests"); } in list_tests()60 std::unordered_map<std::string, bool> bools_; variable