Home | History | Annotate | Download | only in optional.object.observe

Lines Matching refs:i_

26     int i_;
28 Y(int i) : i_(i) {}
33 int i_;
35 X(int i) : i_(i) {}
36 X(X&& x) : i_(x.i_) {x.i_ = 0;}
37 X(const Y& y) : i_(y.i_) {}
38 X(Y&& y) : i_(y.i_+1) {}
40 {return x.i_ == y.i_;}