Home | History | Annotate | Download | only in src

Lines Matching refs:interfaceDecl

441      *   if interfaceDecl:  public <returntype> func(args);
442 * if !interfaceDecl: public <returntype> func(args) { body }
444 void emitFunction(JFunc jfunc, PrintStream out, boolean nativeDecl, boolean interfaceDecl) {
447 if (!nativeDecl && !interfaceDecl && !isPointerFunc) {
458 (interfaceDecl ? "" : "public ") + maybeStatic) +
466 (interfaceDecl ? "" : "public ") + maybeStatic) +
490 if (nativeDecl || interfaceDecl) {