Home | History | Annotate | Download | only in src

Lines Matching refs:cfunc

19 public class CFunc {
33 public CFunc(String original) {
118 public static CFunc parseCFunc(String s) {
119 CFunc cfunc = new CFunc(s);
137 cfunc.setName(fname);
138 cfunc.setType(ftype);
173 cfunc.addArgument(argName, argType);
176 return cfunc;