Home
last modified time | relevance | path

Searched refs:GlobalFunction (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/googletest/googletest/test/
H A Dgoogletest-death-test-test.cc166 void GlobalFunction() { DieInside("GlobalFunction"); } in GlobalFunction() function
189 EXPECT_DEATH(GlobalFunction(), "death.*GlobalFunction"); in DeathTestSubroutine()
190 ASSERT_DEATH(GlobalFunction(), "death.*GlobalFunction"); in DeathTestSubroutine()
497 TEST_F(TestForDeathTest, GlobalFunction) { in TEST_F() argument
498 EXPECT_DEATH(GlobalFunction(), "GlobalFunction"); in TEST_F()
505 EXPECT_DEATH(GlobalFunction(), regex_c_str); in TEST_F()
508 EXPECT_DEATH(GlobalFunction(), regex); in TEST_F()
511 EXPECT_DEATH(GlobalFunction(), regex_std_str); in TEST_F()
515 EXPECT_DEATH(GlobalFunction(), ::std::string(regex_c_str).c_str()); in TEST_F()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ExtractAPI/Serialization/
H A DSerializerBase.h87 for (const auto &GlobalFunction : API.getGlobalFunctions()) in traverseGlobalFunctionRecords() local
88 getDerived()->visitGlobalFunctionRecord(*GlobalFunction.second); in traverseGlobalFunctionRecords()