Lines Matching refs:String

24     public static void main(String args[]) {  in main()
32 String baseStr = "*** This is a very nice string!!!"; in basicTest()
33 String testStr; in basicTest()
44 String testStr2 = "This is a very nice strinG"; in basicTest()
58String s1 = "\u0c6d\u0cb6\u0d00\u0000\u0080\u0080\u0080\u0000\u0002\u0002\u0002\u0000\u00e9\u00e9\… in basicTest()
59String s2 = "\u0c6d\u0cb6\u0d00\u0000\u0080\u0080\u0080\u0000\u0002\u0002\u0002\u0000\uffff\uffff\… in basicTest()
71 String baseStr = "The quick brown fox jumps over the lazy dog!"; in indexTest()
72 String subStr; in indexTest()
100 String charsetName = "US-ASCII"; in constructorTest()
102 String string = "string"; in constructorTest()
107 String s1 = new String(); in constructorTest()
108 String s2 = new String(byteArray); in constructorTest()
109 String s3 = new String(byteArray, 1); in constructorTest()
110 String s4 = new String(byteArray, 0, 4); in constructorTest()
111 String s5 = new String(byteArray, 2, 4, 5); in constructorTest()
114 String s6 = new String(byteArray, 2, 4, charsetName); in constructorTest()
115 String s7 = new String(byteArray, charsetName); in constructorTest()
119 String s8 = new String(byteArray, 3, 3, charset); in constructorTest()
120 String s9 = new String(byteArray, charset); in constructorTest()
121 String s10 = new String(charArray); in constructorTest()
122 String s11 = new String(charArray, 0, 4); in constructorTest()
123 String s12 = new String(string); in constructorTest()
124 String s13 = new String(stringBuffer); in constructorTest()
125 String s14 = new String(codePoints, 1, 3); in constructorTest()
126 String s15 = new String(stringBuilder); in constructorTest()
130 String src = new String("Hello Android"); in copyTest()
170 System.out.println(new String(dst)); in copyTest()