Searched refs:capTest (Results 1 – 1 of 1) sorted by relevance
1298 UnicodeString capTest(5, (UChar32)0x2a, 5); in TestStackAllocation() local1299 if( capTest.length() != 5 * U16_LENGTH(0x2a) || in TestStackAllocation()1300 capTest.char32At(0) != 0x2a || in TestStackAllocation()1301 capTest.char32At(4) != 0x2a in TestStackAllocation()1306 capTest = UnicodeString(5, (UChar32)0x10ff2a, 5); in TestStackAllocation()1307 if( capTest.length() != 5 * U16_LENGTH(0x10ff2a) || in TestStackAllocation()1308 capTest.char32At(0) != 0x10ff2a || in TestStackAllocation()1309 capTest.char32At(4) != 0x10ff2a in TestStackAllocation()1314 capTest = UnicodeString(5, (UChar32)0, 0); in TestStackAllocation()1315 if(capTest.length() != 0) { in TestStackAllocation()