Home | History | Annotate | Download | only in src

Lines Matching refs:null

34     System.out.println(f.getBoolean(null));
36 System.out.println(f.getByte(null));
38 System.out.println(f.getChar(null));
40 System.out.println(f.getDouble(null));
42 System.out.println(f.getFloat(null));
44 System.out.println(f.getInt(null));
46 System.out.println(f.getLong(null));
48 System.out.println(f.getShort(null));
51 f.setBoolean(null, false);
53 f.setByte(null, (byte) 7);
55 f.setChar(null, 'y');
57 f.setDouble(null, 2.7);
59 f.setFloat(null, 2.7f);
61 f.setInt(null, 31);
63 f.setLong(null, 63);
65 f.setShort(null, (short) 15);
68 System.out.println(f.getBoolean(null));
70 System.out.println(f.getByte(null));
72 System.out.println(f.getChar(null));
74 System.out.println(f.getDouble(null));
76 System.out.println(f.getFloat(null));
78 System.out.println(f.getInt(null));
80 System.out.println(f.getLong(null));
82 System.out.println(f.getShort(null));
85 f.set(null, Boolean.valueOf(true));
87 f.set(null, Byte.valueOf((byte) 6));
89 f.set(null, Character.valueOf('z'));
91 f.set(null, Double.valueOf(1.3));
93 f.set(null, Float.valueOf(1.3f));
95 f.set(null, Integer.valueOf(30));
97 f.set(null, Long.valueOf(62));
98 f.set(null, Integer.valueOf(62));
100 f.set(null, Short.valueOf((short) 14));
103 System.out.println(f.getBoolean(null));
105 System.out.println(f.getByte(null));
107 System.out.println(f.getChar(null));
109 System.out.println(f.getDouble(null));
111 System.out.println(f.getFloat(null));
113 System.out.println(f.getInt(null));
115 System.out.println(f.getLong(null));
117 System.out.println(f.getShort(null));
121 f.set(null, Integer.valueOf(14));
127 show(f.get(null));
129 show(f.get(null));
131 show(f.get(null));
133 show(f.get(null));
135 show(f.get(null));
137 show(f.get(null));
139 show(f.get(null));
141 show(f.get(null));
156 System.out.println(o + " (" + (o != null ? o.getClass() : "null") + ")");
180 show(m.invoke(null, 4444));
185 show(m.invoke(null, 1111, 2222));
189 show(m.invoke(null, 1111, 2222));
193 show(m.invoke(null, new int[] { 1, 2, 3, 4 }));
197 show(m.invoke(null, (Object) new String[] { "h", "e", "l", "l", "o" }));
201 show(m.invoke(null, true, (byte) 0, '1', 2, 3, 4, 5, (short) 6));
205 show(m.invoke(null, true, (byte) 0, '1', 2, "hello world", 3, 4, 5, (short) 6));
210 show(m.invoke(null));
262 show(ctor.newInstance((Object[]) null));