Searched refs:capTest (Results 1 – 1 of 1) sorted by relevance
1301 UnicodeString capTest(5, (UChar32)0x2a, 5); in TestStackAllocation() local1302 if( capTest.length() != 5 * U16_LENGTH(0x2a) || in TestStackAllocation()1303 capTest.char32At(0) != 0x2a || in TestStackAllocation()1304 capTest.char32At(4) != 0x2a in TestStackAllocation()1309 capTest = UnicodeString(5, (UChar32)0x10ff2a, 5); in TestStackAllocation()1310 if( capTest.length() != 5 * U16_LENGTH(0x10ff2a) || in TestStackAllocation()1311 capTest.char32At(0) != 0x10ff2a || in TestStackAllocation()1312 capTest.char32At(4) != 0x10ff2a in TestStackAllocation()1317 capTest = UnicodeString(5, (UChar32)0, 0); in TestStackAllocation()1318 if(capTest.length() != 0) { in TestStackAllocation()