/openjdk7/langtools/test/tools/javac/generics/6192945/ |
H A D | Method.java | 29 * @compile Method.java 32 public class Method { class
|
/openjdk7/langtools/test/tools/javac/generics/typevars/5060485/ |
H A D | Method.java | 29 * @compile Method.java 32 public class Method<T extends Number> { class 35 Method<Y> m = null;
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/ |
H A D | Method.java | 29 public final class Method class
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/ |
H A D | Method.java | 21 * $Id: Method.java,v 1.2.4.1 2005/09/15 08:15:19 suresh_emailid Exp $ 41 public final class Method class 46 private Method() { method in class:Method
|
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/ |
H A D | Method.java | 36 public class Method { class 37 Method(ClassReader cr) throws IOException { method in class:Method 44 public Method(AccessFlags access_flags, method in class:Method
|
H A D | AccessFlags.java | 61 public static enum Kind { Class, InnerClass, Field, Method}; enum constant in enum:AccessFlags.Kind 150 return getModifiers(methodModifiers, Kind.Method); 154 return getFlags(methodFlags, Kind.Method);
|
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/ |
H A D | Method.java | 71 public final class Method extends FieldOrMethod { class in inherits:FieldOrMethod 76 public Method() {} method in class:Method 82 public Method(Method c) { method in class:Method 92 Method(DataInputStream file, ConstantPool constant_pool) method in class:Method 105 public Method(int access_flags, int name_index, int signature_index, method in class:Method 214 public final Method copy(ConstantPool constant_pool) { 215 return (Method)copy_(constant_pool);
|
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/ |
H A D | Method.java | 32 public class Method extends Function { class in inherits:Function 40 public Method(final Node node, final Framework fw) { method in class:Method 66 final Method superClassMethod = parentClazz.getParentMethodMatchingName(proposedName);
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/ |
H A D | Pool.java | 100 value = new Method((MethodSymbol)value); 127 static class Method extends DelegatedSymbol { class in class:Pool 129 Method(MethodSymbol m) { method in class:Pool.Method 134 if (!(other instanceof Method)) return false; 135 MethodSymbol o = ((Method)other).m;
|
/openjdk7/jdk/src/share/classes/com/sun/jdi/ |
H A D | Method.java | 32 * for general information about Field and Method mirrors. 42 public interface Method extends TypeComponent, Locatable, Comparable<Method> { interface in inherits:TypeComponent,Locatable,Comparable 424 * Returns the hash code value for this Method.
|
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/ |
H A D | Method.java | 29 public class Method implements Constants { class in inherits:Constants
|
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/jrmp/ |
H A D | RemoteClass.java | 71 private Method[] remoteMethods; 128 * Returns an array of RemoteClass.Method objects representing all 138 Method[] remoteMethods() { 226 * to Method object. 228 Map<String,Method> methods = new HashMap<String,Method>(); 253 remoteMethods = new Method[methods.size()]; 294 Map<String,Method> table) 354 * Create RemoteClass.Method object to represent this method 357 Method newMetho 483 final class Method implements Cloneable { class in class:RemoteClass 518 Method(MethodDoc methodDoc) { method in class:RemoteClass.Method [all...] |
/openjdk7/jdk/src/share/classes/java/lang/reflect/ |
H A D | Method.java | 43 * A {@code Method} provides information about, and access to, a single method 47 * <p>A {@code Method} permits widening conversions to occur when matching the 63 class Method extends AccessibleObject implements GenericDeclaration, class in inherits:AccessibleObject,GenericDeclaration,Member 83 // currently only two levels deep (i.e., one root Method and 84 // potentially many Method objects pointing to it.) 85 private Method root; 113 Method(Class<?> declaringClass, method in class:Method 140 * ReflectAccess) which returns a copy of this Method. The copy's 141 * "root" field points to this Method. 143 Method cop [all...] |
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/ |
H A D | RemoteClass.java | 110 * Return an array of RemoteClass.Method objects representing all of 120 public Method[] getRemoteMethods() { 150 private Method[] remoteMethods; 310 Hashtable<String, Method> methods = new Hashtable<String, Method>(); 339 for (Enumeration<Method> enumeration = methods.elements(); 342 Method m = enumeration.nextElement(); 354 remoteMethods = new Method[methods.size()]; 391 Hashtable<String, Method> table) 513 * Create RemoteClass.Method objec 651 public class Method implements Cloneable { class in class:RemoteClass 757 /* private */ Method(MemberDefinition memberDef) { method in class:RemoteClass.Method [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/ |
H A D | Method.java | 37 // A Method represents a Java method 39 public class Method extends Oop { class in inherits:Oop 77 Method(OopHandle handle, ObjectHeap heap) { method in class:Method 102 // Initialized lazily to avoid initialization ordering dependencies between Method and SymbolTable 234 // Method holder (the Klass holding this method) 276 tty.print("Method " + getName().asString() + getSignature().asString() + "@" + getHandle());
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/ |
H A D | Names.java | 131 public final Name Method; field in class:Names 247 Method = fromString("Method");
|
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/ |
H A D | CompoundType.java | 60 protected Method[] methods; 235 * Return an array of Type.Method objects representing all 238 public Method[] getMethods() { 240 return (Method[]) methods.clone(); 484 CompoundType.Method[] methods = getMethods(); 487 CompoundType.Method theMethod = methods[m]; 494 protected void printMethod (CompoundType.Method it, 598 methods = new Method[0]; 739 methods = new Method[directMethods.size()]; 752 methods = new Method[ 1779 public class Method implements ContextElement, Cloneable { class in class:CompoundType 2349 public Method (CompoundType enclosing, method in class:CompoundType.Method [all...] |
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/ |
H A D | Package.java | 212 ArrayList<Method> methods; 236 List<Method> getMethods() { return methods == null ? noMethods : methods; } 559 class Method extends Member { class in class:Package.Class 563 public Method(int flags, DescriptorEntry descriptor) { method in class:Package.Class.Method 586 Method that = (Method)o; 1320 static final List<Class.Method> noMethods = Arrays.asList(new Class.Method[0]);
|
/openjdk7/jdk/test/java/lang/invoke/indify/ |
H A D | Indify.java | 156 java.lang.reflect.Method main = mainClass.getMethod("main", String[].class); 375 final Map<Method,Constant> constants = new HashMap<>(); 376 final Map<Method,String> indySignatures = new HashMap<>(); 386 for (Method m : cf.methods) { 395 Method conm = findMember(cf.methods, ref[1], ref[2]); 497 for (Method m : cf.methods) { 514 for (Method m : cf.methods) { 664 private Constant scanPattern(Method m, char patternMark) { 793 Method ownMethod = null; 1417 public final List<Method> method 1499 public static class Method extends Member { class in class:Indify [all...] |