Lines Matching refs:isPublic

184           boolean isPublic, boolean isField, boolean expectedCallback) {  in checkMemberCallback()  argument
189 if (isPublic) { in checkMemberCallback()
225 boolean isPublic = (visibility == Visibility.Public); in checkField()
228 if (klass.isInterface() && (!isStatic || !isPublic)) { in checkField()
243 if (Reflection.canDiscoverWithGetField(klass, name) != (canDiscover && isPublic)) { in checkField()
244 throwDiscoveryException(klass, name, true, "getField()", (canDiscover && isPublic)); in checkField()
247 if (Reflection.canDiscoverWithGetFields(klass, name) != (canDiscover && isPublic)) { in checkField()
248 throwDiscoveryException(klass, name, true, "getFields()", (canDiscover && isPublic)); in checkField()
329 checkMemberCallback(klass, name, isPublic, true /* isField */, invokesMemberCallback); in checkField()
336 boolean isPublic = (visibility == Visibility.Public); in checkMethod()
337 if (klass.isInterface() && !isPublic) { in checkMethod()
354 if (Reflection.canDiscoverWithGetMethod(klass, name) != (canDiscover && isPublic)) { in checkMethod()
355 throwDiscoveryException(klass, name, false, "getMethod()", (canDiscover && isPublic)); in checkMethod()
358 if (Reflection.canDiscoverWithGetMethods(klass, name) != (canDiscover && isPublic)) { in checkMethod()
359 throwDiscoveryException(klass, name, false, "getMethods()", (canDiscover && isPublic)); in checkMethod()
423 checkMemberCallback(klass, name, isPublic, false /* isField */, invokesMemberCallback); in checkMethod()
429 boolean isPublic = (visibility == Visibility.Public); in checkConstructor()
451 if (Reflection.canDiscoverWithGetConstructor(klass, args) != (canDiscover && isPublic)) { in checkConstructor()
453 klass, fullName, false, "getConstructor()", (canDiscover && isPublic)); in checkConstructor()
456 if (Reflection.canDiscoverWithGetConstructors(klass, args) != (canDiscover && isPublic)) { in checkConstructor()
458 klass, fullName, false, "getConstructors()", (canDiscover && isPublic)); in checkConstructor()