Home | History | Annotate | Download | only in src

Lines Matching refs:cfunc

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