Searched defs:Method (Results 1 - 3 of 3) sorted by relevance

/libcore/dex/src/main/java/com/android/dex/
H A DClassData.java22 private final Method[] directMethods;
23 private final Method[] virtualMethods;
26 Method[] directMethods, Method[] virtualMethods) {
41 public Method[] getDirectMethods() {
45 public Method[] getVirtualMethods() {
56 public Method[] allMethods() {
57 Method[] result = new Method[directMethods.length + virtualMethods.length];
81 public static class Method { class in class:ClassData
86 public Method(int methodIndex, int accessFlags, int codeOffset) { method in class:ClassData.Method
[all...]
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DMethod.java38 * A {@code Method} provides information about, and access to, a single method
42 * <p>A {@code Method} permits widening conversions to occur when matching the
58 class Method extends AbstractMethod implements GenericDeclaration, class in inherits:AbstractMethod,GenericDeclaration,Member
65 public static final Comparator<Method> ORDER_BY_SIGNATURE = new Comparator<Method>() {
66 @Override public int compare(Method a, Method b) {
88 private Method() { method in class:Method
93 * that declares the method represented by this {@code Method} object.
100 * Returns the name of the method represented by this {@code Method}
[all...]
/libcore/luni/src/test/java/libcore/java/nio/channels/
H A DFileIOInterruptTest.java182 testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method.READ);
186 testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method.READV);
189 private void testChannelRead_exceptionWhenAlreadyClosed(ChannelReader.Method method)
199 if (method == ChannelReader.Method.READ) {
214 testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method.READ);
218 testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method.READV);
221 private void testChannelRead_exceptionWhenAlreadyInterrupted(ChannelReader.Method method)
232 if (method == ChannelReader.Method.READ) {
251 testChannelRead_exceptionOnCloseWhenBlocked(ChannelReader.Method.READ);
255 testChannelRead_exceptionOnCloseWhenBlocked(ChannelReader.Method
533 enum Method { enum in class:FileIOInterruptTest.ChannelReader
578 enum Method { enum in class:FileIOInterruptTest.ChannelWriter
[all...]

Completed in 91 milliseconds