Searched defs:allMethods (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DInterfaceTypeImpl.java97 public List<Method> allMethods() { method in class:InterfaceTypeImpl
H A DArrayTypeImpl.java68 public List<Method> allMethods() { method in class:ArrayTypeImpl
H A DClassTypeImpl.java314 public List<Method> allMethods() { method in class:ClassTypeImpl
H A DReferenceTypeImpl.java530 * returned in a sensible order, as they are in allMethods().
531 * So, start over with allMethods() and use the hash map
534 List<Method> list = allMethods();
539 abstract public List<Method> allMethods(); method in class:ReferenceTypeImpl
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DInterfaceEntry.java186 // Add this method to the 'allMethods' list of any interfaces
256 // Add this method to the 'allMethods' list of any interfaces
264 // that when the forward entry is defined, the 'allMethods'
296 // so that when the forward entry is defined, the 'allMethods'
339 /** Get the allMethods vector. */
340 public Vector allMethods () method in class:InterfaceEntry
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DIDLNames.java685 CompoundType.Method[] allMethods,
711 int count = allMethods.length;
719 names[i] = allMethods[i].getName();
724 CompoundType enclosing = allMethods[0].getEnclosing();
735 kinds[i] = getInitialAttributeKind(allMethods[i],env);
741 setAttributeKinds(allMethods,kinds,names);
756 if (!allMethods[i].isConstructor()) {
770 overloaded[i] = (!allMethods[i].isAttribute() &&
771 !allMethods[i].isConstructor() &&
772 doesMethodCollide(names[i],allMethods[
684 setMethodNames(CompoundType container, CompoundType.Method[] allMethods, BatchEnvironment env) argument
888 convertOverloadedMethods(CompoundType.Method[] allMethods, String[] names, boolean[] overloaded) argument
944 doesMethodCollide(String name, CompoundType.Method method, CompoundType.Method[] allMethods, String[] allNames, boolean ignoreAttributes) argument
987 doesConstructorCollide(String name, CompoundType.Method method, CompoundType.Method[] allMethods, String[] allNames, boolean compareConstructors) argument
1019 setMemberNames(CompoundType container, CompoundType.Member[] allMembers, CompoundType.Method[] allMethods, BatchEnvironment env) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DReferenceType.java426 List<Method> allMethods(); method in interface:ReferenceType
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DReferenceTypeImpl.java402 public final List allMethods() throws ClassNotPreparedException { method in class:ReferenceTypeImpl
403 List allMethods = (allMethodsCache != null)? (List) allMethodsCache.get() : null;
404 if (allMethods == null) {
406 allMethods = Collections.unmodifiableList(getAllMethods());
407 allMethodsCache = new SoftReference(allMethods);
409 return allMethods;
438 * returned in a sensible order, as they are in allMethods().
439 * So, start over with allMethods() and use the hash map
442 //System.out.println("jj: RTI: Calling allMethods for:" + this);
444 List list = new ArrayList(allMethods());
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassDefinition.java618 if (allMethods == null) {
637 MemberDefinition myMethod = allMethods.lookupSig(name, type);
989 if (allMethods == null || !allMethods.isFrozen()) {
1003 Iterator methods = allMethods.lookupName(methodName);
1179 MethodSet allMethods = null; field in class:ClassDefinition
1197 if (allMethods == null) {
1223 * `allMethods', the set of methods in the current class.
1235 MethodSet allMethods,
1253 // should have already been added to allMethods
1232 collectOneClass(Environment env, ClassDeclaration parent, MethodSet myMethods, MethodSet allMethods, MethodSet mirandaMethods) argument
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java2725 HashMap allM = allMethods;
2729 java.lang.reflect.Method res = (java.lang.reflect.Method) allMethods.get(name);
2735 private static HashMap allMethods; field in class:XMLKit.Element
2738 if (allMethods != null) {
2739 return allMethods;
2788 return allMethods = allM;

Completed in 58 milliseconds