Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/intltest/
Dustrtest.cpp1291 UnicodeString capTest(5, (UChar32)0x2a, 5); in TestStackAllocation() local
1292 if( capTest.length() != 5 * U16_LENGTH(0x2a) || in TestStackAllocation()
1293 capTest.char32At(0) != 0x2a || in TestStackAllocation()
1294 capTest.char32At(4) != 0x2a in TestStackAllocation()
1299 capTest = UnicodeString(5, (UChar32)0x10ff2a, 5); in TestStackAllocation()
1300 if( capTest.length() != 5 * U16_LENGTH(0x10ff2a) || in TestStackAllocation()
1301 capTest.char32At(0) != 0x10ff2a || in TestStackAllocation()
1302 capTest.char32At(4) != 0x10ff2a in TestStackAllocation()
1307 capTest = UnicodeString(5, (UChar32)0, 0); in TestStackAllocation()
1308 if(capTest.length() != 0) { in TestStackAllocation()