Lines Matching refs:arg1
136 public static String testCatchException_target(String arg1, long arg2, String exceptionMessage) in testCatchException_target() argument
142 System.out.println("Target: Arg1: " + arg1 + ", Arg2: " + arg2); in testCatchException_target()
146 …public static String testCatchException_handler(IllegalArgumentException iae, String arg1, long ar… in testCatchException_handler() argument
148 …System.out.println("Handler: " + iae + ", Arg1: " + arg1 + ", Arg2: " + arg2 + ", ExMsg: " + exMsg… in testCatchException_handler()
152 public static String testCatchException_handler2(IllegalArgumentException iae, String arg1) { in testCatchException_handler2() argument
153 System.out.println("Handler: " + iae + ", Arg1: " + arg1); in testCatchException_handler2()
218 public static boolean testGuardWithTest_test(String arg1, long arg2) { in testGuardWithTest_test() argument
219 return "target".equals(arg1) && 42 == arg2; in testGuardWithTest_test()
222 public static String testGuardWithTest_target(String arg1, long arg2, int arg3) { in testGuardWithTest_target() argument
223 System.out.println("target: " + arg1 + ", " + arg2 + ", " + arg3); in testGuardWithTest_target()
227 public static String testGuardWithTest_fallback(String arg1, long arg2, int arg3) { in testGuardWithTest_fallback() argument
228 System.out.println("fallback: " + arg1 + ", " + arg2 + ", " + arg3); in testGuardWithTest_fallback()