Home | History | Annotate | Download | only in tests

Lines Matching defs:mValue

33     if (mValue >= 0) {
34 gDestructorCount[mValue]++;
38 mValue = value;
41 return mValue;
45 int mValue = -1;
118 MovableButNonCopyable(int value) : mValue(value) {}
121 mValue = other.mValue;
122 other.mValue = -1;
127 mValue = other.mValue;
128 other.mValue = -1;
133 return mValue;
138 int mValue;
163 CopyableButNonMovable(int value) : mValue(value) {}
166 mValue = other.mValue;
171 mValue = other.mValue;
179 return mValue;
184 int mValue;
207 MovableAndCopyable(int value) : mValue(value) {}
210 mValue = other.mValue;
216 mValue = other.mValue * 2;
221 mValue = other.mValue;
227 mValue = other.mValue * 2;
228 other.mValue = -1;
233 return mValue;
238 int mValue;