Searched refs:actual_ (Results 1 – 1 of 1) sorted by relevance
58 ParseIntHandler() : step_(0), actual_() {} in ParseIntHandler()60 bool Int(int i) { actual_ = i; step_++; return true; } in Int()63 int actual_; member67 ParseUintHandler() : step_(0), actual_() {} in ParseUintHandler()69 bool Uint(unsigned i) { actual_ = i; step_++; return true; } in Uint()72 unsigned actual_; member76 ParseInt64Handler() : step_(0), actual_() {} in ParseInt64Handler()78 bool Int64(int64_t i) { actual_ = i; step_++; return true; } in Int64()81 int64_t actual_; member85 ParseUint64Handler() : step_(0), actual_() {} in ParseUint64Handler()[all …]