Searched refs:allMethods (Results 1 - 21 of 21) sorted by relevance

/openjdk7/langtools/test/tools/javadoc/
H A DMethodLinks.java57 MethodDoc[] allMethods = self.methods();
59 for (int i=0; i<allMethods.length; i++)
60 if (allMethods[i].name().equals("SAMPLE"))
61 SAMPLE = allMethods[i];
/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...]
H A DImplementationType.java219 Method[] allMethods = type.getMethods();
221 for (int i = 0; i < allMethods.length; i++) {
222 Method theMethod = allMethods[i];
/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/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DCheckMethods.java91 ArrayList allMethods = new ArrayList(
93 allMethods.addAll(Arrays.asList(URLConnection.class.getDeclaredMethods()));
95 for (Iterator itr = allMethods.iterator(); itr.hasNext(); ) {
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/
H A DCheckMethods.java89 ArrayList allMethods = new ArrayList(
93 for (Iterator itr = allMethods.iterator(); itr.hasNext();) {
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DReferenceType.java426 List<Method> allMethods(); method in interface:ReferenceType
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DArrayTypeImpl.java68 public List<Method> allMethods() { method in class:ArrayTypeImpl
H A DInterfaceTypeImpl.java97 public List<Method> allMethods() { method in class:InterfaceTypeImpl
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/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/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DVisibleMemberMap.java530 final MethodDoc[] allMethods = cd.methods(filter);
539 for (final MethodDoc propertyMethod : allMethods) {
545 final MethodDoc getter = getterForField(allMethods, propertyMethod);
546 final MethodDoc setter = setterForField(allMethods, propertyMethod);
/openjdk7/jdk/src/share/classes/java/beans/
H A DIntrospector.java1035 Method allMethods[] = getPublicDeclaredMethods(argType);
1036 List validMethods = new ArrayList(allMethods.length);
1037 for (int i = 0; i < allMethods.length; i++) {
1038 if (allMethods[i] == null) {
1042 if (isEventHandler(allMethods[i])) {
1043 validMethods.add(allMethods[i]);
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.hpp376 int classesNum, char** classes, bool* allMethods,
382 short* classesNum, short* classesMax, char*** classes, bool** allMethods,
/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/hotspot/agent/test/jdi/
H A Dsagdoit.java280 pp("allMethods() = " + xx.allMethods());
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DValueGen.java383 Enumeration el = intf.allMethods ().elements ();
402 Enumeration el = parentValue.allMethods ().elements ();
/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;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java313 for (Method method : cls.allMethods()) {
1511 for (Method method : refType.allMethods()) {
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCommandInterpreter.java175 List<Method> methods = cls.allMethods();

Completed in 92 milliseconds