Lines Matching refs:Reflection

235     if (Reflection.canDiscoverWithGetDeclaredField(klass, name) != canDiscover) {  in checkField()
239 if (Reflection.canDiscoverWithGetDeclaredFields(klass, name) != canDiscover) { in checkField()
243 if (Reflection.canDiscoverWithGetField(klass, name) != (canDiscover && isPublic)) { in checkField()
247 if (Reflection.canDiscoverWithGetFields(klass, name) != (canDiscover && isPublic)) { in checkField()
292 if (Reflection.canDiscoverFieldWithMetaReflection(klass, name, true) != canDiscover) { in checkField()
299 if (Reflection.canDiscoverFieldWithMetaReflection(klass, name, false) != true) { in checkField()
308 if (Reflection.canObserveFieldHiddenAccessFlags(klass, name)) { in checkField()
314 if (!Reflection.canGetField(klass, name)) { in checkField()
317 if (!Reflection.canSetField(klass, name)) { in checkField()
346 if (Reflection.canDiscoverWithGetDeclaredMethod(klass, name) != canDiscover) { in checkMethod()
350 if (Reflection.canDiscoverWithGetDeclaredMethods(klass, name) != canDiscover) { in checkMethod()
354 if (Reflection.canDiscoverWithGetMethod(klass, name) != (canDiscover && isPublic)) { in checkMethod()
358 if (Reflection.canDiscoverWithGetMethods(klass, name) != (canDiscover && isPublic)) { in checkMethod()
386 if (Reflection.canDiscoverMethodWithMetaReflection(klass, name, true) != canDiscover) { in checkMethod()
393 if (Reflection.canDiscoverMethodWithMetaReflection(klass, name, false) != true) { in checkMethod()
404 if (Reflection.canObserveMethodHiddenAccessFlags(klass, name)) { in checkMethod()
410 if (!Reflection.canInvokeMethod(klass, name)) { in checkMethod()
443 if (Reflection.canDiscoverWithGetDeclaredConstructor(klass, args) != canDiscover) { in checkConstructor()
447 if (Reflection.canDiscoverWithGetDeclaredConstructors(klass, args) != canDiscover) { in checkConstructor()
451 if (Reflection.canDiscoverWithGetConstructor(klass, args) != (canDiscover && isPublic)) { in checkConstructor()
456 if (Reflection.canDiscoverWithGetConstructors(klass, args) != (canDiscover && isPublic)) { in checkConstructor()
486 if (Reflection.canDiscoverConstructorWithMetaReflection(klass, args, true) != canDiscover) { in checkConstructor()
493 if (Reflection.canDiscoverConstructorWithMetaReflection(klass, args, false) != true) { in checkConstructor()
502 if (!Reflection.canInvokeConstructor(klass, args, initargs)) { in checkConstructor()
518 if (Reflection.canUseNewInstance(klass) != canAccess) { in checkNullaryConstructor()