Lines Matching refs:cfunc
24 CFunc cfunc; field in JFunc
36 public JFunc(CFunc cfunc) { in JFunc() argument
37 this.cfunc = cfunc; in JFunc()
41 return cfunc; in getCFunc()
121 public static JFunc convert(CFunc cfunc, boolean useArray) { in convert() argument
123 JFunc jfunc = new JFunc(cfunc); in convert()
124 jfunc.setName(cfunc.getName()); in convert()
125 jfunc.setType(JType.convert(cfunc.getType(), false)); in convert()
127 int numArgs = cfunc.getNumArgs(); in convert()
130 CType cArgType = cfunc.getArgType(i); in convert()
137 String cArgName = cfunc.getArgName(i); in convert()
138 CType cArgType = cfunc.getArgType(i); in convert()
152 System.err.println("Failed to convert function " + cfunc); in convert()