Lines Matching refs:DieIf
179 void DieIf(bool should_die) {
181 DieInside("DieIf");
529 EXPECT_DEATH(DieIf(true), "DieIf\\(\\)");
557 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(DieIf(false), "DieIf"),
564 EXPECT_DEATH(DieIf(true), "DieIfLessThan") << "End of death test message.";
572 EXPECT_DEATH(DieIf(false), "DieIf"); // This assertion should fail.
589 ASSERT_DEATH(DieIf(false), "DieIf"); // This assertion should fail.
598 EXPECT_DEATH(DieIf((++x) == 4), "DieIf");
600 const char* regex = "DieIf";