Lines Matching refs:Second

35     Second.staticNopNeverInline(11);  in staticNopNeverInline()
45 Second.staticNop(11); in staticNop()
54 public static void nop(Second s) { in nop()
74 return Second.staticReturnArg2(77, value); in staticReturnArg2()
91 public static long returnArg1(Second s, long value) { in returnArg1()
109 return Second.staticReturn9(); in staticReturn9()
125 public static int return7(Second s) { in return7()
142 public static float return42f(Second s) { in return42f()
160 return Second.staticReturnNull(); in staticReturnNull()
176 public static Object returnNull(Second s) { in returnNull()
189 public static int getInt(Second s) { in getInt()
202 public static double getDouble(Second s) { in getDouble()
215 public static Object getObject(Second s) { in getObject()
228 public static String getString(Second s) { in getString()
241 public static int staticGetInt(Second s) { in staticGetInt()
242 return Second.staticGetInstanceIntField(s); in staticGetInt()
255 public static double getDoubleFromParam(Second s) { in getDoubleFromParam()
270 public static int getStaticInt(Second s) { in getStaticInt()
283 public static long setLong(Second s, long value) { in setLong()
306 public static long setLongReturnArg2(Second s, long value, int arg2) { in setLongReturnArg2()
320 public static long staticSetLong(Second s, long value) { in staticSetLong()
321 Second.staticSetInstanceLongField(s, value); in staticSetLong()
335 public static long setLongThroughParam(Second s, long value) { in setLongThroughParam()
351 public static float setStaticFloat(Second s, float value) { in setStaticFloat()
1195 Second s = new Second(); in main()