Home | History | Annotate | Download | only in cts

Lines Matching defs:string

27  * Test the string methods on the ProtoOutputStream class.
35 private static String makeLongString() {
44 private static final String LONG_STRING = makeLongString();
57 final String string = LONG_STRING;
59 po.writeString(ProtoOutputStream.makeFieldId(1, fieldFlags), string);
61 final byte[] utf8 = string.getBytes("UTF-8");
127 public void testWriteCompat(String val) throws Exception {
218 testRepeatedCompat(new String[0]);
219 testRepeatedCompat(new String[] { "", "abcd\u3110!", "Hi", });
225 public void testRepeatedCompat(String[] val) throws Exception {