Home | History | Annotate | Download | only in examples

Lines Matching refs:sb

36       StringBuilder sb = new StringBuilder();
37 sb.append("this is a reasonably short string that doesn't actually need any formatting");
51 StringBuilder sb = new StringBuilder();
52 sb.append("this is a reasonably short string that has an int ");
53 sb.append(i);
54 sb.append(" in it");
68 StringBuilder sb = new StringBuilder();
69 sb.append("this is a reasonably short string that has a string ");
70 sb.append("hello");
71 sb.append(" in it");