Lines Matching refs:null

39     NullPointerException npe = null;  in methodTwo()
45 ((Object) null).getClass(); in methodTwo()
53 ((Main) null).callSpecial(); // Test invokespecial. in methodTwo()
61 ((Main) null).callFinal(); // Test invokevirtual on final. in methodTwo()
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()
320 ((Object[]) null)[0].toString(); in methodTwo()
327 useInt(((int[]) null)[0]); in methodTwo()
334 useFloat(((float[]) null)[0]); in methodTwo()
341 useLong(((long[]) null)[0]); in methodTwo()
348 useDouble(((double[]) null)[0]); in methodTwo()
355 ((Object[]) null)[0] = "Fisk"; in methodTwo()
362 ((int[]) null)[0] = 42; in methodTwo()
369 ((float[]) null)[0] = 42.0F; in methodTwo()
376 ((long[]) null)[0] = 42L; in methodTwo()
383 ((double[]) null)[0] = 42.0d; in methodTwo()
390 useInt(((byte[]) null)[0]); in methodTwo()
397 if (((boolean[]) null)[0]) { } in methodTwo()
404 useInt(((char[]) null)[0]); in methodTwo()
411 useInt(((short[]) null)[0]); in methodTwo()
418 ((byte[]) null)[0] = 42; in methodTwo()
425 ((boolean[]) null)[0] = true; in methodTwo()
432 ((char[]) null)[0] = '\u0042'; in methodTwo()
439 ((short[]) null)[0] = 42; in methodTwo()
446 useInt(((Object[]) null).length); in methodTwo()
453 useInt(((int[]) null).length); in methodTwo()
460 useInt(((float[]) null).length); in methodTwo()
467 useInt(((long[]) null).length); in methodTwo()
474 useInt(((double[]) null).length); in methodTwo()
481 useInt(((byte[]) null).length); in methodTwo()
488 useInt(((boolean[]) null).length); in methodTwo()
495 useInt(((char[]) null).length); in methodTwo()
502 useInt(((short[]) null).length); in methodTwo()
509 Interface i = null; in methodTwo()
517 Object o = null; in methodTwo()
524 npe = null; in methodTwo()
526 String s = null; in methodTwo()
538 npe = null; in methodTwo()
540 String s = null; in methodTwo()