/libcore/ojluni/src/main/native/ |
H A D | Thread.c | 43 static JNINativeMethod methods[] = { variable 62 (*env)->RegisterNatives(env, cls, methods, ARRAY_LENGTH(methods));
|
H A D | jvm.h | 364 * Note that in JDK 1.1, native methods did not create a frame. 365 * In 1.2, they do. Therefore native methods like Class.forName 707 * Returns the number of *declared* fields or methods. 994 unsigned int methods; member in struct:__anon25 1357 * the methods for getting the VM version and its capabilities.
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/ |
H A D | MethodLogger.java | 29 * The names of the invoked methods, in order. 31 private List<String> methods = new ArrayList<String>(); field in class:MethodLogger 34 * The parameter lists of the invoked methods, in order. 45 methods.add(method); 53 return methods.size(); 60 return methods.get(index); 91 methods.clear();
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
H A D | MethodOverridesTest.java | 98 Method[] methods = Sub.class.getMethods(); 100 for (Method method : methods) { 115 Method[] methods = PublicSub.class.getMethods(); 117 for (Method method : methods) { 166 private Set<String> signatures(Method[] methods) { argument 168 for (Method method : methods) {
|
H A D | OldAndroidClassTest.java | 141 Method[] methods = ArrayList.class.getMethods(); 144 for (Method method : methods) { 173 // Check if we also reflect methods from interfaces 175 Method[] methods = MyInterface.class.getMethods(); 176 assertTrue(hasMethod(methods, ".foo(")); 178 methods = MyOtherInterface.class.getMethods(); 179 assertTrue(hasMethod(methods, ".foo(")); 180 assertTrue(hasMethod(methods, ".bar(")); 182 methods = MyClass.class.getMethods(); 183 assertTrue(hasMethod(methods, " 192 hasMethod(Method[] methods, String signature) argument [all...] |
H A D | ReflectionTest.java | 290 Method[] methods = ExtendsImplementsDefinesMember.class.getMethods(); 291 assertTrue(names(methods).contains("method")); 295 Method[] methods = ImplementsExtendsDefinesMember.class.getMethods(); 296 assertTrue(names(methods).contains("method")); 300 Method[] methods = ExtendsAndImplementsDefinesMember.class.getMethods(); 301 assertEquals(1, count(names(methods), "method")); 411 private List<String> names(Member[] methods) { argument 413 for (Member method : methods) {
|
/libcore/ojluni/src/main/java/java/lang/reflect/ |
H A D | Proxy.java | 56 * {@code Proxy} provides static methods for creating dynamic proxy 58 * dynamic proxy classes created by those methods. 128 * methods in those interfaces, and invoking {@code getMethod} will 129 * find methods in the proxy interfaces as would be expected. 180 * {@code equals}, or {@code toString} methods declared in 186 * {@code java.lang.Object}. Other public methods of a proxy 188 * overridden by a proxy class, so invocations of those methods behave 212 * or {@code toString} methods of {@code java.lang.Object}, 216 * the public, non-final methods of {@code java.lang.Object} 263 * Orders methods b 661 deduplicateAndGetExceptions(List<Method> methods) argument 711 validateReturnTypes(List<Method> methods) argument 749 getMethodsRecursive(Class<?>[] interfaces, List<Method> methods) argument 917 generateProxy(String name, Class<?>[] interfaces, ClassLoader loader, Method[] methods, Class<?>[][] exceptions) argument [all...] |
/libcore/ojluni/src/main/java/java/net/ |
H A D | HttpURLConnection.java | 235 * Other HTTP methods ({@code OPTIONS}, {@code HEAD}, {@code PUT}, {@code 518 /* valid HTTP methods */ 519 private static final String[] methods = { field in class:HttpURLConnection 630 // experiment w/ new HTTP methods using java. But it should 634 for (int i = 0; i < methods.length; i++) { 635 if (methods[i].equals(method)) {
|
/libcore/ojluni/src/main/java/java/lang/ |
H A D | Class.java | 139 * interface methods. There is one pair per interface supported by this class. That 149 * methods for the methods in the interface. 161 * is copied in, and virtual methods from our class either replace those from the super or are 162 * appended. For abstract classes, methods may be created in the vtable that aren't in 163 * virtual_ methods_ for miranda methods. 177 /** All methods with this class as the base for virtual dispatch. */ 178 private transient long methods; field in class:Class 244 /** Offset of the first virtual method copied from an interface in the methods array. */ 247 /** Offset of the first virtual method defined in this class in the methods arra [all...] |
/libcore/support/src/test/java/tests/resources/ |
H A D | junit4-4.3.1.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ... |