Lines Matching refs:cb
84 CharBuffer cb = CharBuffer.allocate(128);
85 Formatter fmt = new Formatter(cb);
88 test(cb, "Huge Fruit, Inc.");
91 test(cb, "HUGE - Huge Fruit, Inc.");
94 test(cb, "HUGE");
97 test(cb, "HUGE ");
100 test(cb, "Huge Fruit,*");
104 test(cb, " Fruit Titanesque, Inc.");
107 private static void test(CharBuffer cb, String exp) {
108 cb.limit(cb.position());
109 cb.rewind();
110 if (!cb.toString().equals(exp))
112 + cb.toString() + "'");
113 cb.clear();