Home
last modified time | relevance | path

Searched refs:IllegalAccessException (Results 1 – 25 of 71) sorted by relevance

123

/libcore/ojluni/annotations/hiddenapi/java/lang/reflect/
DField.java92 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; in get()
95 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; in getBoolean()
98 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; in getByte()
101 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; in getChar()
104 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; in getShort()
107 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; in getInt()
110 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; in getLong()
113 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; in getFloat()
116 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; in getDouble()
119 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException; in set()
[all …]
DConstructor.java112 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException, in newInstance()
123 throws java.lang.IllegalAccessException, java.lang.IllegalArgumentException, in newInstance0()
/libcore/ojluni/src/main/java/java/lang/reflect/
DField.java341 throws IllegalArgumentException, IllegalAccessException; in get()
369 throws IllegalArgumentException, IllegalAccessException; in getBoolean()
397 throws IllegalArgumentException, IllegalAccessException; in getByte()
427 throws IllegalArgumentException, IllegalAccessException; in getChar()
457 throws IllegalArgumentException, IllegalAccessException; in getShort()
487 throws IllegalArgumentException, IllegalAccessException; in getInt()
517 throws IllegalArgumentException, IllegalAccessException; in getLong()
547 throws IllegalArgumentException, IllegalAccessException; in getFloat()
577 throws IllegalArgumentException, IllegalAccessException; in getDouble()
649 throws IllegalArgumentException, IllegalAccessException; in set()
[all …]
DConstructor.java339 throws InstantiationException, IllegalAccessException, in newInstance()
355 IllegalAccessException, IllegalArgumentException, InvocationTargetException; in newInstance0()
/libcore/ojluni/src/lambda/java/java/lang/invoke/
DMethodHandles.java60 …efc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException { return n… in findStatic()
62 …efc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException { return n… in findVirtual()
64 …or(Class<?> refc, MethodType type) throws NoSuchMethodException, IllegalAccessException { return n… in findConstructor()
67 … Class<?> specialCaller) throws NoSuchMethodException, IllegalAccessException { return null; } in findSpecial()
69 …> refc, String name, Class<?> type) throws NoSuchFieldException, IllegalAccessException { return n… in findGetter()
71 …> refc, String name, Class<?> type) throws NoSuchFieldException, IllegalAccessException { return n… in findSetter()
73 …> refc, String name, Class<?> type) throws NoSuchFieldException, IllegalAccessException { return n… in findStaticGetter()
75 …> refc, String name, Class<?> type) throws NoSuchFieldException, IllegalAccessException { return n… in findStaticSetter()
77 …ver, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException { return n… in bind()
79 public MethodHandle unreflect(Method m) throws IllegalAccessException { return null; } in unreflect()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DIllegalAccessExceptionTest.java28 IllegalAccessException e = new IllegalAccessException(); in test_Constructor()
38 IllegalAccessException e = new IllegalAccessException("fixture"); in test_ConstructorLjava_lang_String()
/libcore/ojluni/src/main/java/java/lang/
DIllegalAccessException.java59 public class IllegalAccessException extends ReflectiveOperationException { class
66 public IllegalAccessException() { in IllegalAccessException() method in IllegalAccessException
75 public IllegalAccessException(String s) { in IllegalAccessException() method in IllegalAccessException
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
DParserFactoryTest.java31 IllegalAccessException, InstantiationException { in testMakeParser()
60 } catch (IllegalAccessException e) { in testMakeParser()
95 IllegalAccessException, InstantiationException { in testMakeParserString()
117 } catch (IllegalAccessException e) { in testMakeParserString()
/libcore/ojluni/annotations/hiddenapi/java/lang/invoke/
DMethodHandles.java401 throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException { in findStatic()
424 throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException { in findVirtual()
430 throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException { in findConstructor()
449 throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException { in findSpecial()
458 throws java.lang.IllegalAccessException { in findSpecial()
464 throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException { in findGetter()
470 throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException { in findAccessor()
480 throws java.lang.IllegalAccessException { in findAccessor()
486 throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException { in findSetter()
492 throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException { in findVarHandle()
[all …]
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodHandles.java781 …Class<?> refc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException { in findStatic()
785 throw new IllegalAccessException("Method" + method + " is not static"); in findStatic()
892 …Class<?> refc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException { in findVirtual()
918 throw new IllegalAccessException("Method" + m + " is static"); in findVirtual()
980 …dConstructor(Class<?> refc, MethodType type) throws NoSuchMethodException, IllegalAccessException { in findConstructor()
1113 … Class<?> specialCaller) throws NoSuchMethodException, IllegalAccessException { in findSpecial()
1149 throws IllegalAccessException { in findSpecial()
1151 throw new IllegalAccessException("expected a non-static method:" + method); in findSpecial()
1163 throw new IllegalAccessException("no private access for invokespecial : " in findSpecial()
1176 throw new IllegalAccessException(refc + "is not assignable from " + specialCaller); in findSpecial()
[all …]
/libcore/luni/src/main/java/org/xml/sax/helpers/
DParserFactory.java80 IllegalAccessException, in makeParser()
119 IllegalAccessException, in makeParser()
DNewInstance.java42 throws ClassNotFoundException, IllegalAccessException, in newInstance()
71 } catch (IllegalAccessException e) { in getClassLoader()
/libcore/ojluni/src/main/java/sun/reflect/misc/
DReflectUtil.java46 throws InstantiationException, IllegalAccessException { in newInstance()
59 throws IllegalAccessException in ensureMemberAccess()
88 } catch (IllegalAccessException e) { in ensureMemberAccess()
/libcore/ojluni/annotations/hiddenapi/sun/reflect/misc/
DReflectUtil.java43 throws java.lang.IllegalAccessException, java.lang.InstantiationException { in newInstance()
52 throws java.lang.IllegalAccessException { in ensureMemberAccess()
/libcore/luni/src/test/java/libcore/java/net/
DURLStreamHandlerFactoryTest.java34 public void setUp() throws IllegalAccessException { in setUp()
48 public void tearDown() throws IllegalAccessException { in tearDown()
DOldSocketImplFactoryTest.java84 } catch (IllegalAccessException e) { in setUp()
98 } catch (IllegalAccessException e) { in tearDown()
DOldDatagramSocketImplFactoryTest.java103 } catch (IllegalAccessException e) { in setUp()
117 } catch (IllegalAccessException e) { in tearDown()
/libcore/ojluni/src/main/java/sun/nio/ch/
DDefaultAsynchronousChannelProvider.java53 } catch (IllegalAccessException | InstantiationException x) { in createProvider()
/libcore/ojluni/src/main/java/sun/reflect/
DReflection.java114 throws IllegalAccessException in ensureMemberAccess()
121 throw new IllegalAccessException("Class " + currentClass.getName() + in ensureMemberAccess()
/libcore/xml/src/main/java/org/xmlpull/v1/
DXmlPullParserFactory.java152 } catch (IllegalAccessException e) { in getParserInstance()
176 } catch (IllegalAccessException e) { in getSerializerInstance()
/libcore/ojluni/src/main/java/sun/nio/fs/
DDefaultFileSystemProvider.java49 } catch (IllegalAccessException | InstantiationException x) { in createProvider()
/libcore/ojluni/src/main/java/sun/net/ftp/
DFtpClientProvider.java74 IllegalAccessException | in loadProviderFromProperty()
/libcore/ojluni/annotations/hiddenapi/sun/reflect/
DReflection.java47 throws java.lang.IllegalAccessException { in ensureMemberAccess()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DInvocationTargetExceptionTest.java142 } catch (IllegalAccessException e) { in test_ConstructorLjava_lang_Throwable()
165 } catch (IllegalAccessException e) { in test_ConstructorLjava_lang_ThrowableLjava_lang_String()
/libcore/luni/src/main/java/javax/xml/transform/
DTransformerFactory.java108 } catch (IllegalAccessException e) { in newInstance()

123