Lines Matching refs:Value
68 ((Value) null).objectField.toString(); in methodTwo()
75 useInt(((Value) null).intField); in methodTwo()
82 useFloat(((Value) null).floatField); in methodTwo()
89 useLong(((Value) null).longField); in methodTwo()
96 useDouble(((Value) null).doubleField); in methodTwo()
103 ((Value) null).objectField = "Fisk"; in methodTwo()
110 ((Value) null).intField = 42; in methodTwo()
117 ((Value) null).floatField = 42.0F; in methodTwo()
124 ((Value) null).longField = 42L; in methodTwo()
131 ((Value) null).doubleField = 42.0d; in methodTwo()
138 useInt(((Value) null).byteField); in methodTwo()
145 if (((Value) null).booleanField) { } in methodTwo()
152 useInt(((Value) null).charField); in methodTwo()
159 useInt(((Value) null).shortField); in methodTwo()
166 ((Value) null).byteField = 42; in methodTwo()
173 ((Value) null).booleanField = true; in methodTwo()
180 ((Value) null).charField = '\u0042'; in methodTwo()
187 ((Value) null).shortField = 42; in methodTwo()
194 ((Value) null).volatileObjectField.toString(); in methodTwo()
201 ((Value) null).volatileObjectField = "Fisk"; in methodTwo()
208 useInt(((Value) null).volatileIntField); in methodTwo()
215 ((Value) null).volatileIntField = 42; in methodTwo()
222 useFloat(((Value) null).volatileFloatField); in methodTwo()
229 ((Value) null).volatileFloatField = 42.0F; in methodTwo()
236 useLong(((Value) null).volatileLongField); in methodTwo()
243 ((Value) null).volatileLongField = 42L; in methodTwo()
250 useDouble(((Value) null).volatileDoubleField); in methodTwo()
257 ((Value) null).volatileDoubleField = 42.0d; in methodTwo()
264 useInt(((Value) null).volatileByteField); in methodTwo()
271 ((Value) null).volatileByteField = 42; in methodTwo()
278 if (((Value) null).volatileBooleanField) { } in methodTwo()
285 ((Value) null).volatileBooleanField = true; in methodTwo()
292 useInt(((Value) null).volatileCharField); in methodTwo()
299 ((Value) null).volatileCharField = '\u0042'; in methodTwo()
306 useInt(((Value) null).volatileShortField); in methodTwo()
313 ((Value) null).volatileShortField = 42; in methodTwo()
603 static class Value { class in Main