Searched defs:argumentTypes (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/test/serviceability/
H A DParserTest.java177 String cmdLine, DiagnosticCommand[] argumentTypes) throws Exception {
180 Object[] res = wb.parseCommandLine(cmdLine, argumentTypes);
197 private void shouldFail(String argument, DiagnosticCommand[] argumentTypes) throws Exception { argument
199 wb.parseCommandLine(argument, argumentTypes);
176 parse(String searchName, String expectedValue, String cmdLine, DiagnosticCommand[] argumentTypes) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DObsoleteMethodImpl.java69 public List<Type> argumentTypes() throws ClassNotLoadedException { method in class:ObsoleteMethodImpl
H A DMethodImpl.java165 public List<Type> argumentTypes() throws ClassNotLoadedException { method in class:MethodImpl
294 List<Type> paramTypes = this.argumentTypes();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicFunctionType.java33 private List argumentTypes; field in class:BasicFunctionType
48 public int getNumArguments() { return ((argumentTypes == null) ? 0 : argumentTypes.size()); }
50 return (Type) argumentTypes.get(i);
53 if (argumentTypes == null) {
54 argumentTypes = new ArrayList();
56 argumentTypes.add(t);
62 if (argumentTypes != null) {
63 for (ListIterator iter = argumentTypes.listIterator(); iter.hasNext(); ) {
78 t.argumentTypes
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DMethod.java129 List<Type> argumentTypes() throws ClassNotLoadedException; method in interface:Method
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DMethodImpl.java113 public List argumentTypes() throws ClassNotLoadedException { method in class:MethodImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DType.java520 * @param argumentTypes the argument types of the method.
526 final Type[] argumentTypes)
530 for (int i = 0; i < argumentTypes.length; ++i) {
531 argumentTypes[i].getDescriptor(buf);
524 getMethodDescriptor( final Type returnType, final Type[] argumentTypes) argument
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassDefinition.java984 Type[] argumentTypes,
1009 if (!env.isApplicable(method, argumentTypes)) {
1081 Type[] argumentTypes)
1085 argumentTypes, false, null);
1114 Type argumentTypes[])
1117 return matchMethod(env, null, idInit, argumentTypes,
981 matchMethod(Environment env, ClassDefinition accessor, Identifier methodName, Type[] argumentTypes, boolean isAnonConstCall, Identifier accessPackage) argument
1078 matchMethod(Environment env, ClassDefinition accessor, Identifier methodName, Type[] argumentTypes) argument
1112 matchAnonConstructor(Environment env, Identifier accessPackage, Type argumentTypes[]) argument

Completed in 99 milliseconds