Searched defs:builderForUChar32Append (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringBuilderTest.cpp105 StringBuilder builderForUChar32Append; local
107 builderForUChar32Append.append(frakturAChar); // The fraktur A is not in the BMP, so it's two UTF-16 code units long.
108 ASSERT_EQ(2U, builderForUChar32Append.length());
109 builderForUChar32Append.append(static_cast<UChar32>('A'));
110 ASSERT_EQ(3U, builderForUChar32Append.length());
112 expectBuilderContent(String(resultArray, WTF_ARRAY_LENGTH(resultArray)), builderForUChar32Append); local

Completed in 58 milliseconds