Lines Matching refs:par
26 static private void doThrow(String par) { in doThrow() argument
27 throw new Error("you are null: " + par); in doThrow()
30 static private void checkNotNullDirect(Object obj, String par) { in checkNotNullDirect() argument
32 throw new Error("you are null: " + par); in checkNotNullDirect()
35 static private void checkNotNullSplit(Object obj, String par) { in checkNotNullSplit() argument
37 doThrow(par); in checkNotNullSplit()
40 static private void checkNotNullSplitAlt(Object obj, String par) { in checkNotNullSplitAlt() argument
43 doThrow(par); in checkNotNullSplitAlt()
73 String par = "a"; in doit1() local
75 throw new Error("you are null: " + par); in doit1()
101 String par = "a"; in doit2() local
103 doThrow(par); in doit2()
131 String par = "a"; in doit3() local
132 checkNotNullDirect(a, par); in doit3()
158 String par = "a"; in doit4() local
159 checkNotNullSplit(a, par); // resembles Kotlin runtime lib in doit4()
169 String par = "a"; in doit5() local
171 doThrow(par); in doit5()