Lines Matching refs:my_value

87     V my_value;
88 MyKeyFirst(int i = 0, int v = 0): my_key(index_to_key<K>()(i)), my_value((V)v) {
91 INFO("MyKeyFirst{"); print_my_value(my_key); INFO(","); print_my_value(my_value); INFO("}");
93 operator int() const { return (int)my_value; }
98 V my_value;
100 MyKeySecond(int i = 0, int v = 0): my_value((V)v), my_key(index_to_key<K>()(i)) {
103 … INFO("MyKeySecond{"); print_my_value(my_key); INFO(","); print_my_value(my_value); INFO("}");
105 operator int() const { return (int)my_value; }
110 V my_value;
112 …MyMessageKeyWithoutKey(int i = 0, int v = 0): my_value((V)v), my_message_key(index_to_key<K>()(i))…
115 …geKeyWithoutKey{"); print_my_value(my_message_key); INFO(","); print_my_value(my_value); INFO("}");
117 operator int() const { return (int)my_value; }
125 V my_value;
128 …MyMessageKeyWithBrokenKey(int i = 0, int v = 0): my_value((V)v), my_key(), my_message_key(index_to…
131 …eyWithBrokenKey{"); print_my_value(my_message_key); INFO(","); print_my_value(my_value); INFO("}");
133 operator int() const { return (int)my_value; }
142 V my_value;
144 MyKeyWithBrokenMessageKey(int i = 0, int v = 0): my_value((V)v), my_key(index_to_key<K>()(i)) {
147 …KeyWithBrokenMessageKey{"); print_my_value(my_key); INFO(","); print_my_value(my_value); INFO("}");
149 operator int() const { return (int)my_value; }
158 V my_value;
160 …MyMessageKeyWithoutKeyMethod(int i = 0, int v = 0): my_value((V)v), my_message_key(index_to_key<K>…
163 …ithoutKeyMethod{"); print_my_value(my_message_key); INFO(","); print_my_value(my_value); INFO("}");
165 operator int() const { return (int)my_value; }
199 static int my_int_val(MyKeyFirst<K, V> const &i) { return (int)(i.my_value); }
204 static int my_int_val(MyKeySecond<K, V> const &i) { return (int)(i.my_value); }
281 mv1.my_value = 0.5*i;
288 CHECK_MESSAGE( (mv0.my_value==mv1.my_value), "result not correct");
296 CHECK_MESSAGE( (mv0.my_value==value), "result not correct");
316 CHECK_MESSAGE( (mv0.my_value==value), "result not correct");
324 mv1.my_value = value;