Home
last modified time | relevance | path

Searched refs:asciiMixed (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/test/java/lang/StringBuffer/
DCompactStringBuffer.java373 String asciiMixed = "abc" + "\u4e00\u4e01\u4e02" + "fgh"; in testCompactStringMisc() local
387 check(new StringBuffer().append(asciiMixed).delete(3, 6).toString(), in testCompactStringMisc()
389 check(new StringBuffer().append(asciiMixed).deleteCharAt(3).toString(), in testCompactStringMisc()
391 check(new StringBuffer().append(asciiMixed).deleteCharAt(3) in testCompactStringMisc()
411 check(new StringBuffer().append(asciiMixed).replace(3, 6, "AB").toString(), in testCompactStringMisc()
430 check(new StringBuffer().append(asciiMixed).insert(0, 'A').toString(), in testCompactStringMisc()
432 check(new StringBuffer().append(asciiMixed).insert(3, "A").toString(), in testCompactStringMisc()