Lines Matching refs:objectArray
24 static Object objectArray = new Object[2]; field in Main
56 check(false, objectArray instanceof int[]); in checkInstanceOfNonTryCatch()
61 check(false, objectArray instanceof ExactCheck[]); in checkInstanceOfNonTryCatch()
67 check(false, objectArray instanceof NormalCheck[]); in checkInstanceOfNonTryCatch()
73 check(true, objectArray instanceof Object[]); in checkInstanceOfNonTryCatch()
95 check(false, objectArray instanceof int[]); in checkInstanceOfTryCatch()
100 check(false, objectArray instanceof ExactCheck[]); in checkInstanceOfTryCatch()
106 check(false, objectArray instanceof NormalCheck[]); in checkInstanceOfTryCatch()
112 check(true, objectArray instanceof Object[]); in checkInstanceOfTryCatch()
164 field = (int[])objectArray; in checkCheckCast()
181 field = (ExactCheck[])objectArray; in checkCheckCast()
203 field = (NormalCheck[])objectArray; in checkCheckCast()
221 field = (Object[])objectArray; in checkCheckCast()