Searched refs:arg_types (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DNamedMethodGenerator.java46 Type[] arg_types, String[] arg_names,
49 super(access_flags, return_type, arg_types, arg_names, method_name,
45 NamedMethodGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
H A DRtMethodGenerator.java45 Type[] arg_types, String[] arg_names,
48 super(access_flags, return_type, arg_types, arg_names, method_name,
44 RtMethodGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
H A DMatchGenerator.java48 Type[] arg_types, String[] arg_names,
51 super(access_flags, return_type, arg_types, arg_names, method_name,
47 MatchGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
H A DCompareGenerator.java59 Type[] arg_types, String[] arg_names,
62 super(access_flags, return_type, arg_types, arg_names, method_name,
58 CompareGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
H A DTestGenerator.java54 Type[] arg_types, String[] arg_names,
57 super(access_flags, return_type, arg_types, arg_names, method_name,
53 TestGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
H A DMethodGenerator.java138 Type[] arg_types, String[] arg_names,
141 super(access_flags, return_type, arg_types, arg_names, method_name,
137 MethodGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cpg) argument
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DBCELifier.java207 Type[] arg_types = mg.getArgumentTypes();
213 ", " + printArgumentTypes(arg_types) + ", " +
252 static String printArgumentTypes(Type[] arg_types) { argument
253 if(arg_types.length == 0)
258 for(int i=0; i < arg_types.length; i++) {
259 args.append(printType(arg_types[i]));
261 if(i < arg_types.length - 1)
H A DConstantHTML.java168 String arg_types = buf.toString();
180 index + "\" TARGET=ConstantPool>" + html_method_name + "</A>&nbsp;" + arg_types;
182 file.println("<P><TT>" + ret_type + "&nbsp;" + ref + arg_types + "&nbsp;</TT>\n<UL>" +
H A DBCELFactory.java173 Type[] arg_types = i.getArgumentTypes(_cp);
178 BCELifier.printArgumentTypes(arg_types) + ", " +
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkNativeWrapper.hpp43 BasicType* arg_types,
48 arg_types,
56 BasicType* arg_types,
60 _arg_types(arg_types),
40 build(SharkBuilder* builder, methodHandle target, const char* name, BasicType* arg_types, BasicType return_type) argument
53 SharkNativeWrapper(SharkBuilder* builder, methodHandle target, const char* name, BasicType* arg_types, BasicType return_type) argument
H A DsharkCompiler.hpp64 BasicType* arg_types,
H A DsharkCompiler.cpp222 BasicType* arg_types,
238 &builder, target, name, arg_types, return_type);
219 generate_native_wrapper(MacroAssembler* masm, methodHandle target, int compile_id, BasicType* arg_types, BasicType return_type) argument
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DMethodGen.java82 private Type[] arg_types; field in class:MethodGen
108 * @param arg_types argument types
117 public MethodGen(int access_flags, Type return_type, Type[] arg_types, argument
122 setArgumentTypes(arg_types);
144 if(arg_types != null) {
145 int size = arg_types.length;
148 if(Type.VOID == arg_types[i]) {
168 addLocalVariable(arg_names[i], arg_types[i], start, end);
752 public void setArgumentTypes(Type[] arg_types) { this.arg_types argument
[all...]
H A DType.java135 * @param arg_types what are the argument types
138 public static String getMethodSignature(Type return_type, Type[] arg_types) { argument
140 int length = (arg_types == null)? 0 : arg_types.length;
143 buf.append(arg_types[i].getSignature());
H A DInstructionFactory.java99 * @param arg_types argument types of method
105 Type[] arg_types, short kind) {
108 String signature = Type.getMethodSignature(ret_type, arg_types);
110 for(int i=0; i < arg_types.length; i++) // Count size of arguments
111 nargs += arg_types[i].getSize();
167 Type[] arg_types; field in class:InstructionFactory.MethodObject
178 arg_types = a;
184 return createInvoke(m.class_name, m.name, m.result_type, m.arg_types, kind);
104 createInvoke(String class_name, String name, Type ret_type, Type[] arg_types, short kind) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java1334 List<Type> arg_types = ((MethodType)meth.externalType(types)).argtypes;
1335 int len = arg_types.length();
1348 for (Type arg_type : arg_types) {

Completed in 57 milliseconds