Searched refs:step_ (Results 1 – 1 of 1) sorted by relevance
32 ParseBoolHandler() : step_(0) {} in ParseBoolHandler()36 bool Bool(bool b) { /*EXPECT_EQ(expect, b); */EXPECT_TRUE(expect == b); ++step_; return true; } in Bool()38 unsigned step_; member46 EXPECT_EQ(1u, h.step_); in TEST()54 EXPECT_EQ(1u, h.step_); in TEST()58 ParseIntHandler() : step_(0), actual_() {} in ParseIntHandler()60 bool Int(int i) { actual_ = i; step_++; return true; } in Int()62 unsigned step_; member67 ParseUintHandler() : step_(0), actual_() {} in ParseUintHandler()69 bool Uint(unsigned i) { actual_ = i; step_++; return true; } in Uint()[all …]