Lines Matching refs:GlobalInt
36 static int GlobalInt = 0; variable
38 static void incrementGlobal() { ++GlobalInt; } in incrementGlobal()
40 static void incrementGlobalWithParam(void *) { ++GlobalInt; } in incrementGlobalWithParam()
44 GlobalInt = 0; in TEST()
46 EXPECT_EQ(1, GlobalInt); in TEST()
54 void recoverResources() override { ++GlobalInt; } in recoverResources()
61 GlobalInt = 0; in TEST()
67 EXPECT_EQ(1, GlobalInt); in TEST()
69 GlobalInt = 0; in TEST()
75 EXPECT_EQ(1, GlobalInt); in TEST()
85 GlobalInt = 0; in TEST()
93 EXPECT_EQ(GlobalInt, 0); in TEST()
101 EXPECT_EQ(GlobalInt, 1); in TEST()