Home | History | Annotate | Download | only in src

Lines Matching defs:cfunc

19 public class CFunc {
32 public CFunc(String original) {
110 public static CFunc parseCFunc(String s) {
111 CFunc cfunc = new CFunc(s);
129 cfunc.setName(fname);
130 cfunc.setType(ftype);
166 cfunc.addArgument(argName, argType);
169 return cfunc;