Lines Matching refs:exp

46     void init(Appendable a, String csq, String exp);
92 static void fail(String fs, String exp, String got) {
93 String s = "'" + fs + "': Expected '" + exp + "', got '" + got + "'";
100 static void ck(String s, String exp, String got) {
101 if (!exp.equals(got))
102 fail(s, exp, got);
109 private String csn, exp;
110 public void init(Appendable bw, String csn, String exp) {
117 this.exp = exp;
120 ck("BufferedWriter.append(" + csn + ")", exp, gw.toString());
129 private String csn, exp;
131 public void init(Appendable cw, String csn, String exp) {
134 this.exp = exp;
137 ck("CharArrayWriter.append(" + csn + ")", exp, cw.toString());
146 private String csn, exp;
147 public void init(Appendable fw, String csn, String exp) {
154 this.exp = exp;
169 ck("FileWriter.append(" + csn + ")", exp, sb.toString());
182 private String csn, exp;
183 public void init(Appendable osw, String csn, String exp) {
190 this.exp = exp;
193 ck("OutputStreamWriter.append(" + csn + ")", exp, gos.toString());
202 private String csn, exp;
203 public void init(Appendable pw, String csn, String exp) {
206 this.exp = exp;
209 ck("PrintWriter.append(" + csn + ")", exp, gw.toString());
218 private String csn, exp;
220 public void init(Appendable sw, String csn, String exp) {
223 this.exp = exp;
226 ck("StringWriter.append(" + csn + ")", exp, sw.toString());
234 private String csn, exp;
235 public void init(Appendable ps, String csn, String exp) {
238 this.exp = exp;
241 ck("PrintStream.append(" + csn + ")", exp, gos.toString());
250 private String csn, exp;
252 public void init(Appendable cb, String csn, String exp) {
255 this.exp = exp;
259 ck("CharBuffer.append(" + csn + ")", exp, cb.toString());
268 private String csn, exp;
270 public void init(Appendable sb, String csn, String exp) {
273 this.exp = exp;
276 ck("StringBuffer.append(" + csn + ")", exp, sb.toString());
284 private String csn, exp;
286 public void init(Appendable sb, String csn, String exp) {
289 this.exp = exp;
292 ck("StringBuilder.append(" + csn + ")", exp, sb.toString());