Home | History | Annotate | Download | only in base

Lines Matching refs:total_

20   Listener() : total_(0), scaler_(1) {}
21 explicit Listener(int scaler) : total_(0), scaler_(scaler) {}
22 void IncrementTotal() { total_++; }
23 void IncrementByMultipleOfScaler(int x) { total_ += x * scaler_; }
25 int total() const { return total_; }
28 int total_;
35 Remover() : total_(0) {}
37 total_++;
45 int total() const { return total_; }
48 int total_;
57 total_(0),
67 void IncrementTotal() { total_++; }
71 int total() const { return total_; }
75 int total_;