Home | History | Annotate | Download | only in sourcer

Lines Matching refs:mOutput

35     private final Output mOutput;
48 mOutput = output;
65 AccessSourcer as = new AccessSourcer(mOutput);
77 mOutput.write(" %s", sigSourcer.formalsToString());
85 mOutput.write(" %s", Type.getReturnType(mDesc).getClassName());
88 mOutput.write(" %s", sigSourcer.getReturnType().toString());
93 mOutput.write(" %s(", mIsConstructor ? mClassName : mName);
101 mOutput.write(", ");
103 mOutput.write("%s arg%d", types[i].getClassName(), i);
110 mOutput.write(", ");
112 mOutput.write("%s arg%d", params.get(i).toString(), i);
115 mOutput.write(")");
119 mOutput.write(" throws ");
123 mOutput.write(", ");
125 mOutput.write(mExceptions[i].replace('/', '.'));
129 mOutput.write(" {\n");
139 mOutput.write("throw new RuntimeException(\"Stub\");");
145 mOutput.write("\n}\n");
150 mOutput.write("@%s", desc);
151 return new AnnotationSourcer(mOutput);
162 mOutput.write("%s /* non-standard method attribute */ ", attr.type);