Lines Matching refs:s1
29 String s1 = string1; in timeAppendStrings() local
33 String result = s1 + s2; in timeAppendStrings()
36 if (sum != count * (s1.length() + s2.length())) { in timeAppendStrings()
42 String s1 = longString1; in timeAppendLongStrings() local
46 String result = s1 + s2; in timeAppendLongStrings()
49 if (sum != count * (s1.length() + s2.length())) { in timeAppendLongStrings()
55 String s1 = string1; in timeAppendStringAndInt() local
59 String result = s1 + i1; in timeAppendStringAndInt()
62 if (sum != count * (s1.length() + Integer.toString(i1).length())) { in timeAppendStringAndInt()
68 String s1 = string1; in timeAppendStringAndDouble() local
72 String result = s1 + d1; in timeAppendStringAndDouble()
75 if (sum != count * (s1.length() + Double.toString(d1).length())) { in timeAppendStringAndDouble()
81 String s1 = string1; in timeAppendStringAndHugeDouble() local
85 String result = s1 + d2; in timeAppendStringAndHugeDouble()
88 if (sum != count * (s1.length() + Double.toString(d2).length())) { in timeAppendStringAndHugeDouble()
94 String s1 = string1; in timeAppendStringAndFloat() local
98 String result = s1 + f1; in timeAppendStringAndFloat()
101 if (sum != count * (s1.length() + Float.toString(f1).length())) { in timeAppendStringAndFloat()
107 String s1 = string1; in timeAppendStringAndHugeFloat() local
111 String result = s1 + f2; in timeAppendStringAndHugeFloat()
114 if (sum != count * (s1.length() + Float.toString(f2).length())) { in timeAppendStringAndHugeFloat()
120 String s1 = string1; in timeAppendStringDoubleStringAndFloat() local
126 String result = s1 + d1 + s2 + f1; in timeAppendStringDoubleStringAndFloat()
129 if (sum != count * (s1.length() + in timeAppendStringDoubleStringAndFloat()